Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

Commit

Permalink
MODUL-725 - Added property modifis.hide.enable=false in poppers (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
tharle authored and guignol1981 committed Feb 4, 2019
1 parent ae718fd commit ed508cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/popper/popper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ export class MPopper extends ModulVue implements PortalMixinImpl {
this.isHidden = data.hide;
},
modifiers: {
preventOverflow: { enabled: false } // Modifier used to prevent the popper from being positioned outside the boundary.
preventOverflow: { enabled: false }, // Modifier used to prevent the popper from being positioned outside the boundary.
hide: { enabled: false } // Requires the preventOverflow modifier before it in order to work.
}
};
let reference: Element = this.as<PortalMixin>().getTrigger() as Element;
Expand Down

0 comments on commit ed508cc

Please sign in to comment.