Merge pull request #119 from MayhemYDG/master

Give visual feedback on which quote has been inlined.
This commit is contained in:
James Campos 2011-05-21 23:07:45 -07:00
commit 55dbd3915a
2 changed files with 12 additions and 2 deletions

View File

@ -1748,6 +1748,7 @@
root = $.x('ancestor::td[1]', this);
if (table = $("#i" + id, root)) {
$.rm(table);
$.removeClass(this, 'inlined');
if (this.className === 'backlink') {
$.show($.x('ancestor::table[1]', d.getElementById(id)));
}
@ -1757,10 +1758,11 @@
inline = quoteInline.table(id, el.innerHTML);
if (this.className === 'backlink') {
$.after($('td > br:first-of-type, td > a:last-of-type', this.parentNode), inline);
return $.hide($.x('ancestor::table[1]', el));
$.hide($.x('ancestor::table[1]', el));
} else {
return $.after(this.parentNode, inline);
$.after(this.parentNode, inline);
}
return $.addClass(this, 'inlined');
} else {
inline = $.el('td', {
className: 'reply inline',
@ -2603,6 +2605,9 @@
.qphl {\
outline: 2px solid rgba(216, 94, 49, .7);\
}\
.inlined {\
opacity: .5;\
}\
'
};
main.init();

View File

@ -1398,6 +1398,7 @@ quoteInline =
root = $.x 'ancestor::td[1]', this
if table = $ "#i#{id}", root
$.rm table
$.removeClass @, 'inlined'
if @className is 'backlink'
$.show $.x 'ancestor::table[1]', d.getElementById id
return
@ -1408,6 +1409,7 @@ quoteInline =
$.hide $.x 'ancestor::table[1]', el
else
$.after @parentNode, inline
$.addClass @, 'inlined'
else
inline = $.el 'td',
className: 'reply inline'
@ -2055,6 +2057,9 @@ main =
.qphl {
outline: 2px solid rgba(216, 94, 49, .7);
}
.inlined {
opacity: .5;
}
'
main.init()