From d61b4058efb53d52bcd2f21e012d524b76ba3d9d Mon Sep 17 00:00:00 2001 From: Luke Bennett Date: Tue, 26 Jul 2016 02:32:39 +0100 Subject: Review changes --- app/assets/javascripts/api.js.es6 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'app/assets/javascripts/api.js.es6') diff --git a/app/assets/javascripts/api.js.es6 b/app/assets/javascripts/api.js.es6 index 7997b700b83..d6b0c8c4776 100644 --- a/app/assets/javascripts/api.js.es6 +++ b/app/assets/javascripts/api.js.es6 @@ -19,7 +19,7 @@ private_token: gon.api_token } }).done((group) => { - return callback(group); + return callback(group); }); }, @@ -105,15 +105,15 @@ }, gitignoreText: function gitignoreText(key, callback) { - return $.get(Api.buildUrl(Api.gitignorePath).replace(':key', key), - (gitignore) => { + let url = Api.buildUrl(Api.gitignorePath).replace(':key', key); + return $.get(url, (gitignore) => { return callback(gitignore); }); }, gitlabCiYml: function gitlabCiYml(key, callback) { - return $.get(Api.buildUrl(Api.gitlabCiYmlPath).replace(':key', key), - (file) => { + let url = Api.buildUrl(Api.gitlabCiYmlPath).replace(':key', key); + return $.get(url, (file) => { return callback(file); }); }, -- cgit v1.2.1