diff options
author | drry | 2009-01-04 16:44:41 +0000 |
---|---|---|
committer | drry | 2009-01-04 16:44:41 +0000 |
commit | eedccef4a1da859fb5f6382a4ee34c059a4c42cb (patch) | |
tree | e050c2d5c3e90f626cc0de979f8f73c5cef5eaa1 /notifier/subject_weather_yahoo.js | |
parent | 274755d24c7024b110ec67d4a86699e16db09ae7 (diff) | |
download | vimperator-plugins-eedccef4a1da859fb5f6382a4ee34c059a4c42cb.tar.bz2 |
* fixed missing `var` statements.
* fixed a regex.
* removed subversion props.
* et cetera.
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@27924 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'notifier/subject_weather_yahoo.js')
-rw-r--r--[-rwxr-xr-x] | notifier/subject_weather_yahoo.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/notifier/subject_weather_yahoo.js b/notifier/subject_weather_yahoo.js index 9f67997..2868140 100755..100644 --- a/notifier/subject_weather_yahoo.js +++ b/notifier/subject_weather_yahoo.js @@ -105,9 +105,8 @@ URLs.forEach(function(url) { } return source; }, - buildMessages: function(diff) { - return new notifier.Message('Weather forecast by Yahoo!', $U.xmlSerialize(diff), url); - } + buildMessages: function(diff) + new notifier.Message('Weather forecast by Yahoo!', $U.xmlSerialize(diff), url) }); }); |