You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 29, 2019. It is now read-only.
Added popup-placement attribute that implements the auto position
feature that exists in the tooltip directive. Accepts the same
placement options as the tooltip.
Closes#5444
Passing in 'auto' separated by a space before the placement will enable auto positioning, e.g: "auto bottom-left". The popup will attempt to position where it fits in the closest scrollable ancestor. Accepts:
242
+
243
+
*`top` - popup on top, horizontally centered on input element.
244
+
*`top-left` - popup on top, left edge aligned with input element left edge.
245
+
*`top-right` - popup on top, right edge aligned with input element right edge.
246
+
*`bottom` - popup on bottom, horizontally centered on input element.
247
+
*`bottom-left` - popup on bottom, left edge aligned with input element left edge.
248
+
*`bottom-right` - popup on bottom, right edge aligned with input element right edge.
249
+
*`left` - popup on left, vertically centered on input element.
250
+
*`left-top` - popup on left, top edge aligned with input element top edge.
251
+
*`left-bottom` - popup on left, bottom edge aligned with input element bottom edge.
252
+
*`right` - popup on right, vertically centered on input element.
253
+
*`right-top` - popup on right, top edge aligned with input element top edge.
254
+
*`right-bottom` - popup on right, bottom edge aligned with input element bottom edge.
0 commit comments