From 1bd694b6cb8586087328bc25b6bf16af11dd04a7 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 4 Jan 2018 19:10:35 +0100 Subject: [PATCH] add alert if publish to gist fails --- src/app/panels/file-panel.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/panels/file-panel.js b/src/app/panels/file-panel.js index 881fff2cad..b3c70dc2af 100644 --- a/src/app/panels/file-panel.js +++ b/src/app/panels/file-panel.js @@ -348,6 +348,7 @@ function filepanel (appAPI, filesProvider) { packageFiles(filesProvider['browser'], (error, packaged) => { if (error) { console.log(error) + modalDialogCustom.alert('Failed to create gist: ' + error) } else { var description = 'Created using browser-solidity: Realtime Ethereum Contract Compiler and Runtime. \n Load this file by pasting this gists URL or ID at https://ethereum.github.io/browser-solidity/#version=' + queryParams.get().version + '&optimize=' + queryParams.get().optimize + '&gist=' console.log(packaged)