diff options
author | teramako | 2008-11-22 10:20:32 +0000 |
---|---|---|
committer | teramako | 2008-11-22 10:20:32 +0000 |
commit | e84109d085435e39c64bfbca6fbff2fa48c078fa (patch) | |
tree | 829aff9846dc3994513d8121901a0bb7d8eaf481 | |
parent | a0d031989dcf6983db392a36c5643b83ce086d9b (diff) | |
download | vimperator-plugins-e84109d085435e39c64bfbca6fbff2fa48c078fa.tar.bz2 |
* fix livedoodrclip
* fix service url
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/branches/1.2@24644 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r-- | sbmcommentsviewer.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbmcommentsviewer.js b/sbmcommentsviewer.js index 1117eb6..3251812 100644 --- a/sbmcommentsviewer.js +++ b/sbmcommentsviewer.js @@ -68,7 +68,7 @@ SBMContainer.prototype = { //{{{ toHTMLString: function(format, countOnly){ var label = (this.faviconURL ? '<img src="' + this.faviconURL + '" width="16" height="16"/>' : '') + manager.type[this.type] + ' ' + this.count + '(' + this.entries.length + ')' + - (this.pageURL ? ' <a href="' + this.pageURL + '">' + this.pageURL + '</a>' : ''); + (this.pageURL ? ' <a href="#">' + this.pageURL + '</a>' : ''); if (countOnly){ return label; } else { @@ -272,7 +272,7 @@ var SBM = { //{{{ getService(Components.interfaces.nsIJSON). decode(xhr.responseText); */ - var json = jsonDecode(xhr.reponseText); + var json = jsonDecode(xhr.responseText); if (json && json.isSuccess){ var c = new SBMContainer('l', json.total_clip_count, { faviconURL: 'http://clip.livedoor.com/favicon.ico', |