summaryrefslogtreecommitdiffstats
path: root/core/js/singleselect.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/js/singleselect.js')
-rw-r--r--core/js/singleselect.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/singleselect.js b/core/js/singleselect.js
index e2d94a9f287..c22b5232207 100644
--- a/core/js/singleselect.js
+++ b/core/js/singleselect.js
@@ -2,7 +2,7 @@
$.fn.singleSelect = function () {
return this.each(function (i, select) {
var input = $('<input/>'),
- inputTooltip = $(select).attr('data-inputtitle');
+ inputTooltip = $(select).attr('data-inputtitle');
if (inputTooltip){
input.attr('title', inputTooltip);
}
@@ -84,5 +84,5 @@
}
});
});
- }
+ };
})(jQuery);