We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af0cf90 commit e34d044Copy full SHA for e34d044
2 files changed
ui/scripts/installWizard.js
@@ -731,7 +731,7 @@
731
}
732
733
});
734
- }, 1000);
+ }, 5000);
735
};
736
737
createZone();
ui/scripts/ui-custom/installWizard.js
@@ -181,7 +181,7 @@
181
var showTooltip = function($formContainer, sectionID) {
182
var $tooltip = elems.tooltip('Hints', '');
183
184
- $formContainer.find('input').focus(function() {
+ $formContainer.find('input[type=text]').focus(function() {
185
var $input = $(this);
186
187
$tooltip.find('p').html('');
@@ -201,7 +201,7 @@
201
202
203
setTimeout(function() {
204
- $formContainer.find('input:first').focus();
+ $formContainer.find('input[type=text]:first').focus();
205
}, 600);
206
207
0 commit comments