We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8cca6d commit 89db69dCopy full SHA for 89db69d
index.html
@@ -52,7 +52,7 @@
52
53
$('#refresh').click(function() {
54
$('SELECT OPTION').each(function() {
55
- $(this).text($(this).text().replace("Item", "Value"));
+ $(this).text('Refreshed ' + $(this).val());
56
});
57
$('SELECT').selectBox('refresh');
58
jquery.selectBox.js
@@ -425,7 +425,7 @@
425
}
426
427
// Restore opened dropdown state (original menu was trashed)
428
- if (type == 'dropdown' && control.hasClass('selectBox-menuShowing')) {
+ if ('dropdown' === type && control.hasClass('selectBox-menuShowing')) {
429
this.showMenu();
430
431
};
0 commit comments