Last active
October 20, 2017 08:57
-
-
Save iegorov/9dd3d45a8a33f40dde3221150e3da6fd to your computer and use it in GitHub Desktop.
Revisions
-
iegorov revised this gist
Oct 20, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ .catch((errorResp) => { if (!errorResp.data || !errorResp.data.error || !errorResp.data.error.message) { Utils.alert.error('Возникла ошибка. Повторите попытку.'); return; } -
iegorov revised this gist
Oct 11, 2017 . 1 changed file with 8 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,8 @@ .catch((errorResp) => { if (!errorResp.data || !errorResp.data.error) { Utils.alert.error('Возникла ошибка. Повторите попытку.'); return; } Utils.alert .error(errorResp.data.error.message); }) -
iegorov created this gist
Sep 25, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ if (errorResp.data && errorResp.data.error && errorResp.data.error.message) { Utils.alert.error(errorResp.data.error.message); return; } Utils.alert.error('Ошибка сохранения настроек');