summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/js/multiselect.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/js/multiselect.js b/core/js/multiselect.js
index 2174b74622d..dac39b6acf5 100644
--- a/core/js/multiselect.js
+++ b/core/js/multiselect.js
@@ -165,10 +165,10 @@
button.children('span').first().text(settings.labels.length > 0
? settings.labels.join(', ')
: settings.title);
- var newOuterWidth=Math.max(
- (button.outerWidth()-2),
+ var newOuterWidth = Math.max(
+ (button.outerWidth() - 2),
settings.minOuterWidth
- )+'px';
+ ) + 'px';
var newWidth=Math.max(button.width(),settings.minWidth);
var pos=button.position();
button.css('width',oldWidth);
@@ -281,7 +281,7 @@
var pos=button.position();
if(($(document).height() > (button.offset().top + button.outerHeight() + list.children().length * button.height()) &&
$(document).height() - button.offset().top > (button.offset().top+button.outerHeight() + list.children().length * button.height())) ||
- $(document).height()/2 > button.offset().top
+ $(document).height() / 2 > button.offset().top
) {
list.css({
top:pos.top+button.outerHeight()-5,