diff --git a/www/js/controllers/login-controllers.js b/www/js/controllers/login-controllers.js
index 3f5e21a9210b3c8f972b1c639da0fc91ce0a3fbe..f5f40c7e0bd3ce82f778830ec444cffe2d6a53b2 100644
--- a/www/js/controllers/login-controllers.js
+++ b/www/js/controllers/login-controllers.js
@@ -43,7 +43,7 @@ function LoginController($scope, $timeout, $controller, csWallet) {
 
 }
 
-function LoginModalController($scope, $timeout, $q, $ionicPopover, CryptoUtils, csCrypto, ionicReady,
+function LoginModalController($scope, $timeout, $q, $ionicPopover, $document, CryptoUtils, csCrypto, ionicReady,
                               UIUtils, BMA, Modals, csSettings, Device, parameters) {
   'ngInject';
 
@@ -544,6 +544,16 @@ function LoginModalController($scope, $timeout, $q, $ionicPopover, CryptoUtils,
     });
   };
 
+  /**
+   * On the file chooser
+   */
+  $scope.openFileChooser = function() {
+    var elements = angular.element(document.getElementById('loginImportFile'));
+    if (elements && elements.length) {
+      elements[0].click();
+    }
+  }
+
   /**
    * On file drop
    */
diff --git a/www/templates/login/form_file_import.html b/www/templates/login/form_file_import.html
index d4fd655fa2958cee0955f65f3eacb2828155cb26..0008161a4035d56feac05af82f7e7d8c06b7066e 100644
--- a/www/templates/login/form_file_import.html
+++ b/www/templates/login/form_file_import.html
@@ -8,8 +8,7 @@
 </div>
 
 <div dropzone="onKeyFileDrop(file)">
-  <div ng-if="!formData.file"
-       onclick="angular.element(document.querySelector('#loginImportFile'))[0].click();">
+  <div ng-if="!formData.file" ng-click="openFileChooser()">
     <h2 class="gray" translate>COMMON.CHOOSE_FILE</h2>
     <input type="file" id="loginImportFile" accept=".dunikey,.yml"
            style="visibility:hidden; position:absolute;"