diff options
author | Luke Bennett <lukeeeebennettplus@gmail.com> | 2016-07-26 02:32:39 +0100 |
---|---|---|
committer | Luke Bennett <lukeeeebennettplus@gmail.com> | 2016-07-26 02:32:39 +0100 |
commit | d61b4058efb53d52bcd2f21e012d524b76ba3d9d (patch) | |
tree | 09cf20bab9f9b68ea0beea29b55090d008d8fecd /app/assets/javascripts/api.js.es6 | |
parent | 6f16726ce63949191096fcf89bb2bf99647dc096 (diff) | |
download | gitlab-ce-api-js-es6.tar.gz |
Review changesapi-js-es6
Diffstat (limited to 'app/assets/javascripts/api.js.es6')
-rw-r--r-- | app/assets/javascripts/api.js.es6 | 10 |
1 files changed, 5 insertions, 5 deletions
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); }); }, |