diff --git a/build/browser/app.js b/build/browser/app.js index 0db9cba5..41df4096 100644 --- a/build/browser/app.js +++ b/build/browser/app.js @@ -64,6 +64,9 @@ app.controller('AppController', function($q, DriveScannerService, SelectionState this.restart(); + // We're ready to unhide the application now + document.querySelector('body').style.display = 'initial'; + this.selectImage = function() { return $q.when(dialog.selectImage()).then(function(image) { self.selection.setImage(image); diff --git a/lib/browser/app.js b/lib/browser/app.js index 1842a87b..3ce6ef54 100644 --- a/lib/browser/app.js +++ b/lib/browser/app.js @@ -63,6 +63,9 @@ app.controller('AppController', function($q, DriveScannerService, SelectionState this.restart(); + // We're ready to unhide the application now + document.querySelector('body').style.display = 'initial'; + this.selectImage = function() { return $q.when(dialog.selectImage()).then(function(image) { self.selection.setImage(image); diff --git a/lib/index.html b/lib/index.html index 2059e2e1..3ab86b32 100644 --- a/lib/index.html +++ b/lib/index.html @@ -3,7 +3,6 @@