This commit is contained in:
Ryan McGrath 2011-06-23 03:22:00 +09:00
parent 4f8b44e8dd
commit 6b88587f4c

View file

@ -288,7 +288,7 @@
* Luckily, all our JSON-P methods operate in a callback-based scenario! See why we did that? ;D * Luckily, all our JSON-P methods operate in a callback-based scenario! See why we did that? ;D
*/ */
show: function() { show: function() {
this.api_base_url = this.api_base '/' + this.opts.github_username + '/' + this.opts.github_repository + '/'; this.api_base_url = this.api_base + '/' + this.opts.github_username + '/' + this.opts.github_repository + '/';
GitStatus.util.jsonp(this.api_base_url + 'network_meta', this._getRepoNetworkData, this); GitStatus.util.jsonp(this.api_base_url + 'network_meta', this._getRepoNetworkData, this);
return this; return this;
}, },