Allow thread watcher on catalog
This commit is contained in:
parent
c52f9fcf9e
commit
0b861a3cbb
@ -1,3 +1,6 @@
|
|||||||
|
seaweedchan:
|
||||||
|
- Allow thread watcher to load on catalog
|
||||||
|
|
||||||
### 1.0.10:
|
### 1.0.10:
|
||||||
- Add message pertaining to rewrite
|
- Add message pertaining to rewrite
|
||||||
|
|
||||||
|
|||||||
@ -6606,7 +6606,7 @@
|
|||||||
|
|
||||||
ThreadWatcher = {
|
ThreadWatcher = {
|
||||||
init: function() {
|
init: function() {
|
||||||
if (g.VIEW === 'catalog' || !Conf['Thread Watcher']) {
|
if (!Conf['Thread Watcher']) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.dialog = UI.dialog('watcher', 'top: 50px; left: 0px;', '<div class=move>Thread Watcher</div>');
|
this.dialog = UI.dialog('watcher', 'top: 50px; left: 0px;', '<div class=move>Thread Watcher</div>');
|
||||||
|
|||||||
@ -6602,7 +6602,7 @@
|
|||||||
|
|
||||||
ThreadWatcher = {
|
ThreadWatcher = {
|
||||||
init: function() {
|
init: function() {
|
||||||
if (g.VIEW === 'catalog' || !Conf['Thread Watcher']) {
|
if (!Conf['Thread Watcher']) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.dialog = UI.dialog('watcher', 'top: 50px; left: 0px;', '<div class=move>Thread Watcher</div>');
|
this.dialog = UI.dialog('watcher', 'top: 50px; left: 0px;', '<div class=move>Thread Watcher</div>');
|
||||||
|
|||||||
@ -6466,7 +6466,7 @@
|
|||||||
|
|
||||||
ThreadWatcher = {
|
ThreadWatcher = {
|
||||||
init: function() {
|
init: function() {
|
||||||
if (g.VIEW === 'catalog' || !Conf['Thread Watcher']) {
|
if (!Conf['Thread Watcher']) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.dialog = UI.dialog('watcher', 'top: 50px; left: 0px;', '<div class=move>Thread Watcher</div>');
|
this.dialog = UI.dialog('watcher', 'top: 50px; left: 0px;', '<div class=move>Thread Watcher</div>');
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
ThreadWatcher =
|
ThreadWatcher =
|
||||||
init: ->
|
init: ->
|
||||||
return if g.VIEW is 'catalog' or !Conf['Thread Watcher']
|
return unless Conf['Thread Watcher']
|
||||||
@dialog = UI.dialog 'watcher', 'top: 50px; left: 0px;',
|
@dialog = UI.dialog 'watcher', 'top: 50px; left: 0px;',
|
||||||
'<div class=move>Thread Watcher</div>'
|
'<div class=move>Thread Watcher</div>'
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user