Commit ea37949c authored by Andrew's avatar Andrew

Update js/bootstrap-multiselect.js

Remove trailing comma to support IE 8 and below versions.
parent a5120e3f
......@@ -62,7 +62,7 @@
$('ul', this.container).css({
'max-height': this.options.maxHeight + 'px',
'overflow-y': 'auto',
'overflow-x': 'hidden',
'overflow-x': 'hidden'
});
}
......@@ -160,7 +160,7 @@
buttonContainer: '<div class="btn-group" />',
// Maximum height of thet dropdown menu.
// If maximum height is exceeded a scrollbar will be displayed.
maxHeight: 400,
maxHeight: 400
},
constructor: Multiselect,
......@@ -212,4 +212,4 @@
}
});
}
}(window.jQuery);
}(window.jQuery);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment