Skip to content

Commit e34d044

Browse files
committed
Install wizard:
-Increase system VM poll to every 5s, to reduce server load -Fix invalid tooltip errors
1 parent af0cf90 commit e34d044

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ui/scripts/installWizard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@
731731
}
732732
}
733733
});
734-
}, 1000);
734+
}, 5000);
735735
};
736736

737737
createZone();

ui/scripts/ui-custom/installWizard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
var showTooltip = function($formContainer, sectionID) {
182182
var $tooltip = elems.tooltip('Hints', '');
183183

184-
$formContainer.find('input').focus(function() {
184+
$formContainer.find('input[type=text]').focus(function() {
185185
var $input = $(this);
186186

187187
$tooltip.find('p').html('');
@@ -201,7 +201,7 @@
201201
});
202202

203203
setTimeout(function() {
204-
$formContainer.find('input:first').focus();
204+
$formContainer.find('input[type=text]:first').focus();
205205
}, 600);
206206
};
207207

0 commit comments

Comments
 (0)