summaryrefslogtreecommitdiffabout
path: root/content/flickr.js
Unidiff
Diffstat (limited to 'content/flickr.js') (more/less context) (ignore whitespace changes)
-rw-r--r--content/flickr.js12
1 files changed, 3 insertions, 9 deletions
diff --git a/content/flickr.js b/content/flickr.js
index add628a..b5bfa43 100644
--- a/content/flickr.js
+++ b/content/flickr.js
@@ -145,21 +145,15 @@ Flickr.prototype = {
145 }, 145 },
146 146
147 frob: null, 147 frob: null,
148 authorize_0: function(on_s, on_f) { 148 authorize_0: function(perms, on_s, on_f) {
149 var _this = this; 149 var _this = this;
150 this.api_call( 150 this.api_call(
151 { method: 'flickr.auth.getFrob' }, 151 { method: 'flickr.auth.getFrob' },
152 function(x) { 152 function(x) {
153 _this.frob = xp_str('/rsp/frob',x.responseXML); 153 _this.frob = xp_str('/rsp/frob',x.responseXML);
154 var u = _this.api_call_url( 154 var u = _this.api_call_url(
155 { frob: _this.frob, perms: 'delete' }, _this.auth_url ); 155 { frob: _this.frob, perms: perms?perms:'delete' }, _this.auth_url );
156 var wm = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService( 156 if(on_s) on_s(x,_this.frob,u);
157 Components.interfaces.nsIWindowMediator );
158 var bw = wm.getMostRecentWindow('navigator:browser');
159 var b = bw.getBrowser();
160 var t = b.addTab(u);
161 b.selectedTab = t;
162 if(on_s) on_s();
163 }, function(x,s,c,m) { 157 }, function(x,s,c,m) {
164 if(on_f) on_f(x,s,c,m); 158 if(on_f) on_f(x,s,c,m);
165 } 159 }