Allow thread watcher on catalog

This commit is contained in:
Jordan Bates 2013-04-25 21:24:14 -07:00
parent c52f9fcf9e
commit 0b861a3cbb
5 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,6 @@
seaweedchan:
- Allow thread watcher to load on catalog
### 1.0.10:
- Add message pertaining to rewrite

View File

@ -6606,7 +6606,7 @@
ThreadWatcher = {
init: function() {
if (g.VIEW === 'catalog' || !Conf['Thread Watcher']) {
if (!Conf['Thread Watcher']) {
return;
}
this.dialog = UI.dialog('watcher', 'top: 50px; left: 0px;', '<div class=move>Thread Watcher</div>');

View File

@ -6602,7 +6602,7 @@
ThreadWatcher = {
init: function() {
if (g.VIEW === 'catalog' || !Conf['Thread Watcher']) {
if (!Conf['Thread Watcher']) {
return;
}
this.dialog = UI.dialog('watcher', 'top: 50px; left: 0px;', '<div class=move>Thread Watcher</div>');

View File

@ -6466,7 +6466,7 @@
ThreadWatcher = {
init: function() {
if (g.VIEW === 'catalog' || !Conf['Thread Watcher']) {
if (!Conf['Thread Watcher']) {
return;
}
this.dialog = UI.dialog('watcher', 'top: 50px; left: 0px;', '<div class=move>Thread Watcher</div>');

View File

@ -1,6 +1,6 @@
ThreadWatcher =
init: ->
return if g.VIEW is 'catalog' or !Conf['Thread Watcher']
return unless Conf['Thread Watcher']
@dialog = UI.dialog 'watcher', 'top: 50px; left: 0px;',
'<div class=move>Thread Watcher</div>'