diff options
author | suVene | 2008-12-28 21:15:40 +0000 |
---|---|---|
committer | suVene | 2008-12-28 21:15:40 +0000 |
commit | 1a755ede025009c46e7ba92f49c1a7f51f0cdbd6 (patch) | |
tree | 29de8e2abb68b5fa1b2a173b31a5085e760989c1 /notifier | |
parent | 6e4b0f41b4cb636164d040133f434db44e568a9e (diff) | |
download | vimperator-plugins-1a755ede025009c46e7ba92f49c1a7f51f0cdbd6.tar.bz2 |
del debug log.
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@27535 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'notifier')
-rwxr-xr-x | notifier/subject_wassr.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/notifier/subject_wassr.js b/notifier/subject_wassr.js index 5e70752..a1bf6eb 100755 --- a/notifier/subject_wassr.js +++ b/notifier/subject_wassr.js @@ -42,11 +42,10 @@ notifier.subject.register(notifier.SubjectHttp, { this.options.url = URL + username + '&page=4'; this.options.extra.username = username; this.options.extra.password = password; - logger.log(username + ':' + password); return (username && password) ? true : false; }, parse: function(res) { - if (this.count == 0) return []; // for debug + // if (this.count == 0) return []; // for debug return $U.evalJson(res.responseText) || []; }, diff: function(cache, parsed) |