From 6b88587f4ca61199f36f0a6bca1b43cf6ca84f67 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Thu, 23 Jun 2011 03:22:00 +0900 Subject: [PATCH] Final. --- js/gitstatus.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/gitstatus.js b/js/gitstatus.js index 18953c4..9f76377 100644 --- a/js/gitstatus.js +++ b/js/gitstatus.js @@ -288,7 +288,7 @@ * Luckily, all our JSON-P methods operate in a callback-based scenario! See why we did that? ;D */ 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); return this; },