bootstrap/docs/assets/js
2013-02-07 21:42:34 -08:00
..
google-code-prettify pre font-size increase; revert static top navbar, undo contents section for now 2012-08-19 23:01:24 -07:00
holder Update Holder.js 1.6 to 1.9 2013-01-12 19:49:15 -08:00
application.js clear up show-grid stuff 2013-01-30 18:16:14 -08:00
bootstrap-affix.js Version bump 2012-12-22 16:10:06 -08:00
bootstrap-alert.js Version bump 2012-12-22 16:10:06 -08:00
bootstrap-button.js Version bump 2012-12-22 16:10:06 -08:00
bootstrap-carousel.js clear interval in cycle + rebuild 2013-02-05 20:34:39 -08:00
bootstrap-collapse.js don't hide if already hidden ya n00b 2013-02-05 21:08:56 -08:00
bootstrap-dropdown.js clear interval in cycle + rebuild 2013-02-05 20:34:39 -08:00
bootstrap-modal.js only fire hidden once backdrop has been removed 2013-02-07 20:13:40 -08:00
bootstrap-popover.js Fixes #6190: Add print utility classes 2013-02-05 22:17:28 -08:00
bootstrap-scrollspy.js Merge branch '2.3.0-wip' of github.com:twitter/bootstrap into 2.3.0-wip 2012-12-26 09:21:34 -06:00
bootstrap-tab.js Version bump 2012-12-22 16:10:06 -08:00
bootstrap-tooltip.js Fixes #6823: add some docs notes about tooltips in input groups 2013-02-06 17:25:58 -08:00
bootstrap-transition.js Version bump 2012-12-22 16:10:06 -08:00
bootstrap-typeahead.js remove prevent default on focus 2013-02-07 21:42:34 -08:00
bootstrap.js remove prevent default on focus 2013-02-07 21:42:34 -08:00
bootstrap.min.js remove prevent default on focus 2013-02-07 21:42:34 -08:00
html5shiv.js Upgrade to newest HTML5 shiv, and make it a local dependency rather than CDNing 2013-01-14 00:11:55 -08:00
jquery.js update jquery to 1.9 2013-02-05 20:00:50 -08:00
README.md Fixing various spelling typos in the docs. 2012-11-02 16:34:21 -06:00

2.0 BOOTSTRAP JS PHILOSOPHY

These are the high-level design rules which guide the development of Bootstrap's plugin apis.


DATA-ATTRIBUTE API

We believe you should be able to use all plugins provided by Bootstrap purely through the markup API without writing a single line of javascript.

We acknowledge that this isn't always the most performant and sometimes it may be desirable to turn this functionality off altogether. Therefore, as of 2.0 we provide the ability to disable the data attribute API by unbinding all events on the body namespaced with 'data-api'. This looks like this:

$('body').off('.data-api')

To target a specific plugin, just include the plugins name as a namespace along with the data-api namespace like this:

$('body').off('.alert.data-api')

PROGRAMMATIC API

We also believe you should be able to use all plugins provided by Bootstrap purely through the JS API.

All public APIs should be single, chainable methods, and return the collection acted upon.

$(".btn.danger").button("toggle").addClass("fat")

All methods should accept an optional options object, a string which targets a particular method, or null which initiates the default behavior:

$("#myModal").modal() // initialized with defaults
$("#myModal").modal({ keyboard: false }) // initialized with now keyboard
$("#myModal").modal('show') // initializes and invokes show immediately afterqwe2

OPTIONS

Options should be sparse and add universal value. We should pick the right defaults.

All plugins should have a default object which can be modified to effect all instance's default options. The defaults object should be available via $.fn.plugin.defaults.

$.fn.modal.defaults = { … }

An options definition should take the following form:

*noun*: *adjective* - describes or modifies a quality of an instance

examples:

backdrop: true
keyboard: false
placement: 'top'

EVENTS

All events should have an infinitive and past participle form. The infinitive is fired just before an action takes place, the past participle on completion of the action.

show | shown
hide | hidden

CONSTRUCTORS

Each plugin should expose it's raw constructor on a Constructor property -- accessed in the following way:

$.fn.popover.Constructor

DATA ACCESSOR

Each plugin stores a copy of the invoked class on an object. This class instance can be accessed directly through jQuery's data API like this:

$('[rel=popover]').data('popover') instanceof $.fn.popover.Constructor

DATA ATTRIBUTES

Data attributes should take the following form:

  • data-{{verb}}={{plugin}} - defines main interaction
  • data-target || href^=# - defined on "control" element (if element controls an element other than self)
  • data-{{noun}} - defines class instance options

examples:

// control other targets
data-toggle="modal" data-target="#foo"
data-toggle="collapse" data-target="#foo" data-parent="#bar"

// defined on element they control
data-spy="scroll"

data-dismiss="modal"
data-dismiss="alert"

data-toggle="dropdown"

data-toggle="button"
data-toggle="buttons-checkbox"
data-toggle="buttons-radio"