From e0a3ebf6265acd38d16a5ec1015991fb2b697e31 Mon Sep 17 00:00:00 2001 From: Vlad Jula-Nedelcu Date: Tue, 27 Jun 2017 08:13:41 +0300 Subject: [PATCH] added more positioning constants --- PopoverX.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/PopoverX.php b/PopoverX.php index 7654aa1..10e9eec 100644 --- a/PopoverX.php +++ b/PopoverX.php @@ -44,6 +44,13 @@ class PopoverX extends Widget const TYPE_DANGER = 'danger'; const TYPE_WARNING = 'warning'; + const ALIGN_AUTO = 'auto'; + const ALIGN_AUTO_TOP = 'auto-top'; + const ALIGN_AUTO_RIGHT = 'auto-right'; + const ALIGN_AUTO_BOTTOM = 'auto-bottom'; + const ALIGN_AUTO_LEFT = 'auto-left'; + const ALIGN_HORIZONTAL = 'horizontal'; + const ALIGN_AUTO_VERTICAL = 'vertical'; const ALIGN_RIGHT = 'right'; const ALIGN_LEFT = 'left'; const ALIGN_TOP = 'top';