Skip to content

Commit

Permalink
Disable collision detection when setting the position of the dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-wu committed May 14, 2019
1 parent 80007bd commit ceeac3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ui/BaseDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,8 @@ BaseDialog.prototype.setPosition = function(leftIn, topIn) {
this.container.dialog('option', 'position',
{ my: "left top",
at: atString,
of: this.parent});
of: this.parent,
collision: "none"});
};

BaseDialog.prototype.hideCloseButton = function() {
Expand Down

0 comments on commit ceeac3e

Please sign in to comment.