diff options
author | Cheng-Han, Wu | 2016-05-15 12:22:51 +0800 |
---|---|---|
committer | Cheng-Han, Wu | 2016-05-15 12:22:51 +0800 |
commit | 1f4e1f09b639d49ebe818fd2b4d6e98f78ef2d38 (patch) | |
tree | 5e6dcabd3e405fb73b7a2b40dc6ef212e1d34e95 | |
parent | bdc3a29157d274084aa51c8525c15da74bfbef22 (diff) |
Add some reminder for snippet before modal ajax
-rw-r--r-- | public/js/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js index 0193b6bc..ea9194e6 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -1181,6 +1181,7 @@ ui.toolbar.export.googleDrive.click(function (e) { ui.toolbar.export.gist.attr("href", noteurl + "/gist"); //export to snippet ui.toolbar.export.snippet.click(function() { + ui.spinner.show(); $.get(serverurl + '/gitlab') .success(function (data) { $("#snippetExportModalAccessToken").val(data.accesstoken); @@ -1209,7 +1210,7 @@ ui.toolbar.export.snippet.click(function() { showMessageModal('<i class="fa fa-gitlab"></i> Import from Snippet', 'Unable to fetch gitlab parameters :(', '', '', false); }) .complete(function () { - //na + ui.spinner.hide(); }); return false; }); @@ -1267,6 +1268,7 @@ ui.toolbar.import.gist.click(function () { }); //import from snippet ui.toolbar.import.snippet.click(function () { + ui.spinner.show(); $.get(serverurl + '/gitlab') .success(function (data) { $("#snippetImportModalAccessToken").val(data.accesstoken); |