diff options
Diffstat (limited to 'notifier/observer_growl.js')
-rw-r--r-- | notifier/observer_growl.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/notifier/observer_growl.js b/notifier/observer_growl.js index b6f1d96..2875909 100644 --- a/notifier/observer_growl.js +++ b/notifier/observer_growl.js @@ -26,7 +26,7 @@ var Growl = function() {//{{{ } Growl.prototype = { defaults: { - life: 3000 + life: 5000 }, initialize: function(dom, container) { this.dom = dom; @@ -48,7 +48,7 @@ notifier.observer.register({ io.getRuntimeDirectories('').forEach(function(dir) { let path = io.expandPath(dir.path + '/plugin/notifier'); - $U.readDirectory(path, '^jquery' , function(f) { + $U.readDirectory(path, '^growl' , function(f) { try { io.source(f.path, true) logger.log('load success: ' + f.leafName); |