This commit is contained in:
Nicolas Stepien 2012-05-14 19:10:38 +02:00
parent 90b495c82c
commit d2437c4942
2 changed files with 2 additions and 2 deletions

View File

@ -2682,7 +2682,7 @@
}, },
watch: function(id) { watch: function(id) {
var thread, watched, _name; var thread, watched, _name;
thread = $.id(id); thread = $.id("t" + id);
if ($('.favicon', thread).src === Favicon["default"]) { if ($('.favicon', thread).src === Favicon["default"]) {
return false; return false;
} }

View File

@ -2124,7 +2124,7 @@ Watcher =
Watcher.refresh() Watcher.refresh()
watch: (id) -> watch: (id) ->
thread = $.id id thread = $.id "t#{id}"
return false if $('.favicon', thread).src is Favicon.default return false if $('.favicon', thread).src is Favicon.default
watched = $.get 'watched', {} watched = $.get 'watched', {}