| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
A lightweight, extensible directive for fancy popover creation. The popover directive supports multiple placements, optional transition animation, and more.
Like the Bootstrap jQuery plugin, the popover requires the tooltip module.
Note to mobile developers: Please note that while popovers may work correctly on mobile devices (including tablets), we have made the decision to not officially support such a use-case because it does not make sense from a UX perspective.
There are three versions of the popover: uib-popover and uib-popover-template, and uib-popover-html:
All these settings are available for the three types of popovers.
popover-animation $ C (Default: true, Config: animation) - Should it fade in and out?
popover-append-to-body $ C (Default: false, Config: appendToBody) - Should the popover be appended to '$body' instead of the parent element?
popover-class - Custom class to be applied to the popover.
popover-enable $ (Default: true) - Is it enabled? It will enable or disable the configured popover-trigger.
popover-is-open (Default: false) - Whether to show the popover.
popover-placement C (Default: top, Config: placement) - Passing in 'auto' separated by a space before the placement will enable auto positioning, e.g: "auto bottom-left". The popover will attempt to position where it fits in the closest scrollable ancestor. Accepts:
popover-popup-close-delay C (Default: 0, Config: popupCloseDelay) - For how long should the popover remain open after the close trigger event?
popover-popup-delay C (Default: 0, Config: popupDelay) - Popup delay in milliseconds until it opens.
popover-title - A string to display as a fancy title.
popover-trigger $ (Default: 'click') - What should trigger a show of the popover? Supports a space separated list of event names, or objects (see below).
Note: To configure the tooltips, you need to do it on $uibTooltipProvider (also see below).
The following show triggers are supported out of the box, along with their provided hide triggers:
The outsideClick trigger will cause the popover to toggle on click, and hide when anything else is clicked.
For any non-supported value, the trigger will be used to both show and hide the popover. Using the 'none' trigger will disable the internal trigger(s), one can then use the popover-is-open attribute exclusively to show and hide the popover.
Through the $uibTooltipProvider, you can change the way tooltips and popovers behave by default; the attributes above always take precedence. The following methods are available:
setTriggers(obj) (Example: { 'openTrigger': 'closeTrigger' }) - Extends the default trigger mappings mentioned above with mappings of your own.
options(obj) - Provide a set of defaults for certain tooltip and popover attributes. Currently supports the ones with the C badge.
For Safari 7+ support, if you want to use focus popover-trigger, you need to use an anchor tag with a tab index. For example:
<a tabindex="0" uib-popover="Test" popover-trigger="focus" class="btn btn-default"> Click Me </a>
| Back | FazBrowse Home | New Git URL |