From 3c31c96ad4d84df8eebb04862f319388bb0abd7e Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sun, 20 Aug 2017 18:29:11 -0700 Subject: [PATCH] Hide the download dialog after download starts --- webadmin/src/views/debug.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webadmin/src/views/debug.js b/webadmin/src/views/debug.js index 9d36b9db6..9f4e534b0 100644 --- a/webadmin/src/views/debug.js +++ b/webadmin/src/views/debug.js @@ -57,6 +57,8 @@ angular.module('Application').controller('DebugController', ['$scope', '$locatio // we have to click the link to make the browser do the download // don't know how to prevent the browsers $('#fileDownloadLink')[0].click(); + + $('#downloadFileModal').modal('hide'); }); } };