ember-cli-bootstrap3-popover
v3.10.1
Published
This addon allows you to quickly and conveniently create a Bootstrap3 Popover.
Downloads
476
Maintainers
Readme
ember-cli-bootstrap3-popover
This addon allows you to quickly and conveniently create a Bootstrap3 Popover.
Compatibility
- Ember.js v2.18 or above
- Ember CLI v2.13 or above
- Node.js v8 or above
- Bootstrap 3.3.x+
Installation
The following will install this addon:
ember install ember-cli-bootstrap3-popover
Demo
The demonstration web application can be found here: http://ember-cli-bootstrap3-popover.cybertooth.io/.
Usage
As mentioned above there are dozens of examples on the demonstration site: http://ember-cli-bootstrap3-popover.cybertooth.io/
What Does This Addon Do?
This addon supplies the following components:
twbs-popover
- a container-like element for the popover's markup, options, methods, and events.twbs-popover/content
- a component you nest inside atwbs-popover
that will generate the content for the popover.twbs-popover/title
- a component you nest inside atwbs-popover
that will generate the title for the popover.twbs-popover/trigger
- the component you nest inside atwbs-popover
that acts as the bound element for the popover and in normal trigger events will accept clicks, hovering, and focus events to toggle the popover.
The following mixin also ships with this addon:
Popover
- imported asimport Popover as 'ember-cli-bootstrap3-popover/mixins/popover'
and includes all of the popover options as found in the Bootstrap documentation.
Components
{{twbs-popover}}
A component that contains all of the markup associated with the popover. You can nest {{twbs-popover.content}}
,
{{twbs-popover.title}}
, and {{twbs-popover.trigger}}
inside this components block.
The reason this addon requires Ember-2.3.0+ is because this particular component uses the hash helper.
Be aware that when you nest either the content or title it will be automatically treated as html.
Arguments
- All of the properties listed in the
Popover
mixin. onShow
- the property that accepts an action closure hooked to the bootstrapshow.bs.popover
event.onShown
- the property that accepts an action closure hooked to the bootstrapshown.bs.popover
event.onHide
- the property that accepts an action closure hooked to the bootstraphide.bs.popover
event.onHidden
- the property that accepts an action closure hooked to the bootstraphidden.bs.popover
event.onInserted
- the property that accepts an action closure hooked to the bootstrapinserted.bs.popover
event.
Actions
The following popover methods are exposed as actions:
hide
- triggers the hiding of a popover.show
- triggers the showing of a popover.toggle
- toggles a popover.
{{twbs-popover/content}}
A component that nests inside of a {{#twbs-popover}}
and generates the content for a popover via its block.
This component promotes the easy re-use of existing components inside the popover content and encourages readable html.
Arguments
- None.
{{twbs-popover/title}}
A component that nests inside of a {{#twbs-popover}}
and generates the title for a popover via its block.
This component promotes the easy re-use of existing components inside the popover title and encourages readable html.
Arguments
- None.
{{twbs-popover/trigger}}
A component that nests inside of a {{#twbs-popover}}
and generates the html element that the popover is bound to.
When the popover is initialized, the markup inside this component becomes the popover.
Seriously, check out the examples and all of this will make sense: http://ember-cli-bootstrap3-popover.cybertooth.io/
Arguments
- None.
Mixins
Popover
A mixin that provides access to all of the Bootstrap popover options as found here: http://getbootstrap.com/javascript/#popovers-options
Properties
animation?
(aliased toanimation
)- Defaulttrue
content
- Default''
delay
- Default0
delayHide
- Defaultundefined
delayShow
- Defaultundefined
html?
(aliased tohtml
) - Defaultfalse
placement
- Default'right'
popoverContainer
- Defaultfalse
popoverTemplate
- Default'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
popoverTrigger
- Default'click'
selector
- Defaultfalse
title
- Default''
Methods
getOptions()
- returns a hash containing the options from this mixin that are used to initialize the Bootstrap popover.
Troubleshooting And Tips
- Ember-2.3.0+ is required because this addon uses the hash helper.
- Bootstrap3 CSS and the tooltip Javascript plugin must be installed.
Contributing
See the Contributing guide for details.
License
This project is licensed under the MIT License.