diff --git a/background.html b/background.html index 549e1b794..509cd600e 100644 --- a/background.html +++ b/background.html @@ -669,6 +669,9 @@

{{ installAndroidInstructions }}

diff --git a/js/views/app_view.js b/js/views/app_view.js index a1f0d659d..7cb194748 100644 --- a/js/views/app_view.js +++ b/js/views/app_view.js @@ -9,6 +9,8 @@ this.installView = null; }, events: { + 'click .openInstaller': 'openInstaller', + 'click .openStandalone': 'openStandalone', 'openInstaller': 'openInstaller', 'openInbox': 'openInbox', }, diff --git a/js/views/install_view.js b/js/views/install_view.js index 0a969d4cb..86290b65a 100644 --- a/js/views/install_view.js +++ b/js/views/install_view.js @@ -26,6 +26,7 @@ installFinalButton: i18n('installFinalButton'), installTooManyDevices: i18n('installTooManyDevices'), ok: i18n('ok'), + development: window.config.environment === 'development' }; }, initialize: function(options) {