Our Modal plugin is a super slim take on the traditional modal js plugin! We took special care to include only the bare functionality that we require at twitter.
Download$('#modal-content').modal(options)
boolean
) - if true, it will include a modal-backdrop element.boolean
) - if true, it will close the modal when escape key is pressed.string
) - alternative way of supplying modal class with HTML content.Returns an instance of the modal class. Accepts an optional options object
. If you want your modal to fade in and out, just add a .fade
class to your .modal
element (refer to the demo to see this in action).
$('#modal-content').modal({ closeOnEscape: true })
Returns an instance of the modal class. Toggle the modal open state.
$('#modal-content').modal().toggle()
Returns an instance of the modal class. Opens the modal.
$('#modal-content').modal().open()
Returns an instance of the modal class. Closes the modal.
$('#modal-content').modal().close()
The alert plugin is a super tiny class for adding close functionality to alerts.
Download$(".alert-message").alert()
Wraps all alerts with close functionality. To have your alerts animate out when closed, make sure they have the .fade
and .in
class already applied to them.
This plugin is for adding dropdowns to the bootstrap nav.
Download$('#topbar').dropdown()
Activates menus for given topbar navigation.
Based on the excellent jQuery.tipsy plugin written by Jason Frame; twipsy is an updated version, which doesn't rely on images, uses css3 for animations, and data-attributes for title storage!
Download$('#example').twipsy(options)
boolean
) - apply a css fade transition to the tooltip.number
) - delay before showing tooltip (ms).number
) - delay before hiding tooltip (ms).string
) - fallback text to use when no tooltip text.string
) - position of tooltip - above | below | left | right.boolean
) - is tooltip content HTML?boolean
) - use live event support?number
) - pixel offset of tooltip from element.string|function
) - attribute/callback containing tooltip text.string
) - how tooltip is triggered - hover | focus | manual.Attaches a twipsy handler to an element collection.
Tight pants next level keffiyeh you probably haven't heard of them. Photo booth beard raw denim letterpress vegan messenger bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit american apparel have a terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo thundercats. Tofu biodiesel williamsburg marfa, four loko mcsweeney's cleanse vegan chambray. A really ironic artisan whatever keytar, scenester farm-to-table banksy Austin twitter handle freegan cred raw denim single-origin coffee viral.
The popover plugin provides a simple interface for adding popovers to your application. It extends the boostrap-twipsy.js plugin, so be sure to grab that file as well when including popovers in your project!
Download$('#example').popover(options)
boolean
) - apply a css fade transition to the popover.number
) - delay before showing tooltip (ms).number
) - delay before hiding tooltip (ms).string
) - fallback text to use when no tooltip text.string
) - position of tooltip - above | below | left | right.boolean
) - is tooltip content HTML?boolean
) - use live event support?number
) - pixel offset of tooltip from element.string|function
) - text for title in popover. Alternatively you can specify a data-title
attribute.string|function
) - text for content in popover. Also you can specify a data-content
attibute.string
) - how tooltip is triggered - hover | focus | manual.Initializes popovers for an element collection.