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 901d77f commit 5d97ca4Copy full SHA for 5d97ca4
src/jquery.multiselect.js
@@ -915,12 +915,18 @@
915
var pos = {
916
my: "top",
917
at: "bottom",
918
- of: this.button
+ of: this.button,
919
+ collision: "flip",
920
+ using : null,
921
+ within: window
922
};
923
if(!$.isEmptyObject(this.options.position)) {
924
pos.my = this.options.position.my || pos.my;
925
pos.at = this.options.position.at || pos.at;
926
pos.of = this.options.position.of || pos.of;
927
+ pos.collision = this.options.position.collision || pos.collision;
928
+ pos.using = this.options.position.using || pos.using;
929
+ pos.within = this.options.position.within || pos.within;
930
}
931
if($.ui && $.ui.position) {
932
this.menu.position(pos);
0 commit comments