diff options
author | drry | 2008-12-09 01:54:43 +0000 |
---|---|---|
committer | drry | 2008-12-09 01:54:43 +0000 |
commit | 51c60cd810d1f101920eb4a0767dcbc7473185fc (patch) | |
tree | 7e87d14d6fd4d7072e0b6b513e6162e76e47cec9 /notifier/observer_growl.js | |
parent | 83b3646a8ef65118c8010b72aec460c90ed79ac7 (diff) | |
download | vimperator-plugins-51c60cd810d1f101920eb4a0767dcbc7473185fc.tar.bz2 |
* もしバグったらごめんなさい。
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@26163 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'notifier/observer_growl.js')
-rw-r--r-- | notifier/observer_growl.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/notifier/observer_growl.js b/notifier/observer_growl.js index 0a3d1d3..e585bdc 100644 --- a/notifier/observer_growl.js +++ b/notifier/observer_growl.js @@ -23,7 +23,7 @@ var logger = $U.getLogger('observer_growl'); var Growl = function() {//{{{ this.initialize.apply(this, arguments); -} +}; Growl.prototype = { defaults: { life: 5000 @@ -41,7 +41,7 @@ Growl.prototype = { this.container.removeChild(this.dom); }, -}//}}} +};//}}} notifier.observer.register(notifier.Observer, { initialize: function () { @@ -51,7 +51,7 @@ notifier.observer.register(notifier.Observer, { var path = io.expandPath(dir.path + '/plugin/notifier'); $U.readDirectory(path, '^growl', function(f) { try { - io.source(f.path, true) + io.source(f.path, true); logger.log('load success: ' + f.leafName); } catch (e) { logger.log('load failed: ' + f.leafName); |