Add className to reply stubs.

This commit is contained in:
Nicolas Stepien 2011-06-26 16:46:33 +02:00
parent 990dd25c50
commit e506baac51
3 changed files with 6 additions and 2 deletions

View File

@ -698,7 +698,9 @@
textContent: "[ + ] " + name + " " + trip
});
$.bind(a, 'click', replyHiding.cb.show);
div = $.el('div');
div = $.el('div', {
className: 'stub'
});
$.append(div, a);
$.before(table, div);
}

View File

@ -2,6 +2,7 @@
- custom hotkey binding
- image spoiler revealer
- optional auto noko
- add a class for reply stubs
- fix options centering on Opera
- fix append '#watch' only when auto watch is enabled
- fix cooldown with the normal post form

View File

@ -495,7 +495,8 @@ replyHiding =
textContent: "[ + ] #{name} #{trip}"
$.bind a, 'click', replyHiding.cb.show
div = $.el 'div'
div = $.el 'div',
className: 'stub'
$.append div, a
$.before table, div