Fix duplicated text in thread watcher.

This commit is contained in:
ccd0 2015-01-24 17:05:28 -08:00
parent 02888aac1a
commit 510aa71e81
3 changed files with 3 additions and 6 deletions

View File

@ -14689,7 +14689,6 @@
$.on(x, 'click', ThreadWatcher.cb.rm);
link = $.el('a', {
href: "/" + boardID + "/thread/" + threadID,
textContent: data.excerpt,
title: data.excerpt,
className: 'watcher-link'
});
@ -14701,7 +14700,7 @@
$.prepend(link, count);
}
title = $.el('span', {
textContent: link.textContent,
textContent: data.excerpt,
className: 'watcher-title'
});
$.add(link, title);

View File

@ -14712,7 +14712,6 @@
$.on(x, 'click', ThreadWatcher.cb.rm);
link = $.el('a', {
href: "/" + boardID + "/thread/" + threadID,
textContent: data.excerpt,
title: data.excerpt,
className: 'watcher-link'
});
@ -14724,7 +14723,7 @@
$.prepend(link, count);
}
title = $.el('span', {
textContent: link.textContent,
textContent: data.excerpt,
className: 'watcher-title'
});
$.add(link, title);

View File

@ -253,7 +253,6 @@ ThreadWatcher =
link = $.el 'a',
href: "/#{boardID}/thread/#{threadID}"
textContent: data.excerpt
title: data.excerpt
className: 'watcher-link'
@ -264,7 +263,7 @@ ThreadWatcher =
$.prepend link, count
title = $.el 'span',
textContent: link.textContent
textContent: data.excerpt
className: 'watcher-title'
$.add link, title