Aeosynth you dummy.
This commit is contained in:
parent
458f03167b
commit
d31ec005f8
@ -1482,7 +1482,7 @@
|
||||
}
|
||||
watcher.refresh($.getValue('watched', {}));
|
||||
return setInterval((function() {
|
||||
if (Date.now() > $.getValue('watcher.lastUpdated', 0)) {
|
||||
if (watcher.lastUpdated < $.getValue('watcher.lastUpdated', 0)) {
|
||||
return watcher.refresh($.getValue('watched', {}));
|
||||
}
|
||||
}), 1000);
|
||||
@ -1512,7 +1512,8 @@
|
||||
favicon.src = Favicon.empty;
|
||||
}
|
||||
}
|
||||
return $.setValue('watcher.lastUpdated', Date.now());
|
||||
$.setValue('watcher.lastUpdated', Date.now());
|
||||
return watcher.lastUpdated = Date.now();
|
||||
},
|
||||
addLink: function(props, dialog) {
|
||||
var div, link, x;
|
||||
|
||||
@ -1179,7 +1179,7 @@ watcher =
|
||||
watcher.refresh $.getValue 'watched', {}
|
||||
|
||||
setInterval (->
|
||||
if Date.now() > $.getValue 'watcher.lastUpdated', 0
|
||||
if watcher.lastUpdated < $.getValue 'watcher.lastUpdated', 0
|
||||
watcher.refresh($.getValue 'watched', {})
|
||||
), 1000
|
||||
|
||||
@ -1197,6 +1197,7 @@ watcher =
|
||||
else
|
||||
favicon.src = Favicon.empty
|
||||
$.setValue 'watcher.lastUpdated', Date.now()
|
||||
watcher.lastUpdated = Date.now()
|
||||
|
||||
addLink: (props, dialog) ->
|
||||
div = $.el 'div'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user