diff --git a/apps/common/main/lib/component/InputField.js b/apps/common/main/lib/component/InputField.js index 8ea0d65a0..2ba3f7653 100644 --- a/apps/common/main/lib/component/InputField.js +++ b/apps/common/main/lib/component/InputField.js @@ -191,6 +191,7 @@ define([ }, checkPasswordType: function(){ + if(this.type == 'text') return; if (this._input.val() !== '') { (this._input.attr('type') !== 'password') && this._input.attr('type', 'password'); } else { @@ -436,7 +437,7 @@ define([ template: _.template([ '
', 'Please enter a numeric value between 0 and 255.", "Common.UI.HSBColorPicker.textNoColor": "No Color", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Hide password", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Show password", "Common.UI.SearchDialog.textHighlight": "Highlight results", "Common.UI.SearchDialog.textMatchCase": "Case sensitive", "Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index ff9853868..2939555b6 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -61,6 +61,8 @@ "Common.UI.ExtendedColorDialog.textNew": "New", "Common.UI.ExtendedColorDialog.textRGBErr": "The entered value is incorrect.
Please enter a numeric value between 0 and 255.", "Common.UI.HSBColorPicker.textNoColor": "No Color", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Hide password", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Show password", "Common.UI.SearchDialog.textHighlight": "Highlight results", "Common.UI.SearchDialog.textMatchCase": "Case sensitive", "Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text", diff --git a/apps/spreadsheeteditor/main/app/view/ProtectDialog.js b/apps/spreadsheeteditor/main/app/view/ProtectDialog.js index 970d26f82..379502991 100644 --- a/apps/spreadsheeteditor/main/app/view/ProtectDialog.js +++ b/apps/spreadsheeteditor/main/app/view/ProtectDialog.js @@ -111,14 +111,7 @@ define([ var me = this; this.$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); - this.inputPwd = new Common.UI.InputField({ - el: $('#id-password-txt'), - type: 'password', - allowBlank : true, - style : 'width: 100%;', - maxLength: 255, - validateOnBlur: false - }); + this.repeatPwd = new Common.UI.InputField({ el: $('#id-repeat-txt'), type: 'password', @@ -131,6 +124,17 @@ define([ } }); + this.inputPwd = new Common.UI.InputFieldBtnPassword({ + el: $('#id-password-txt'), + type: 'password', + allowBlank : true, + style : 'width: 100%;', + maxLength: 255, + validateOnBlur: false, + repeatInput: this.repeatPwd, + showPwdOnClick: true + }); + if (this.type == 'sheet') { this.optionsList = new Common.UI.ListView({ el: $('#protect-dlg-options', this.$window), diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 92834a8e1..916f80f86 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "New", "Common.UI.ExtendedColorDialog.textRGBErr": "The entered value is incorrect.
Please enter a numeric value between 0 and 255.", "Common.UI.HSBColorPicker.textNoColor": "No Color", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Hide password", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Show password", "Common.UI.SearchDialog.textHighlight": "Highlight results", "Common.UI.SearchDialog.textMatchCase": "Case sensitive", "Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 3dfc56406..e8c14e46e 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Новый", "Common.UI.ExtendedColorDialog.textRGBErr": "Введено некорректное значение.
Пожалуйста, введите числовое значение от 0 до 255.", "Common.UI.HSBColorPicker.textNoColor": "Без цвета", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Показать пароль", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Скрыть пароль", "Common.UI.SearchDialog.textHighlight": "Выделить результаты", "Common.UI.SearchDialog.textMatchCase": "С учетом регистра", "Common.UI.SearchDialog.textReplaceDef": "Введите текст для замены",