That's better.

This commit is contained in:
No Face 2012-02-23 23:40:39 +01:00
parent a1a4caa06d
commit 51f7440b04
2 changed files with 4 additions and 4 deletions

View File

@ -895,14 +895,14 @@
return $.set("hiddenReplies/" + g.BOARD + "/", g.hiddenReplies);
},
hideHide: function(reply) {
var div, name, table, trip, uid, _ref;
var div, name, table, trip, uid, _ref, _ref2;
table = reply.parentNode.parentNode.parentNode;
if (table.hidden) return;
table.hidden = true;
if (conf['Show Stubs']) {
name = $('.commentpostername', reply).textContent;
uid = $('.posteruid', reply).textContent;
trip = ((_ref = $('.postertrip', reply)) != null ? _ref.textContent : void 0) || '';
uid = ((_ref = $('.posteruid', reply)) != null ? _ref.textContent : void 0) || '';
trip = ((_ref2 = $('.postertrip', reply)) != null ? _ref2.textContent : void 0) || '';
div = $.el('div', {
className: 'stub',
innerHTML: "<a href=javascript:;><span>[ + ]</span> " + name + " " + uid + " " + trip + "</a>"

View File

@ -746,7 +746,7 @@ replyHiding =
if conf['Show Stubs']
name = $('.commentpostername', reply).textContent
uid = $('.posteruid', reply).textContent
uid = $('.posteruid', reply)?.textContent or ''
trip = $('.postertrip', reply)?.textContent or ''
div = $.el 'div',