fix problem with activating saving of password

fix-mobilekeyboard
Tor Hveem 11 years ago
parent ed18a250fb
commit ff480cd0c6
  1. 9
      js/glowingbear.js

@ -283,6 +283,15 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
settings.password = '';
}
// Check if user decides to save password, and copy it over
settings.addCallback('savepassword', function(newvalue) {
if (settings.savepassword) {
// Init value in settings module
settings.setDefaults({'password': $scope.password});
settings.password = $scope.password;
}
});
$rootScope.wasMobileUi = false;
if (utils.isMobileUi()) {
$rootScope.wasMobileUi = true;

Loading…
Cancel
Save