From 46b5e0cbc6cc82cfcfef45c0eb69a0daac8ceb3c Mon Sep 17 00:00:00 2001 From: Bradly Feeley Date: Fri, 2 Nov 2012 16:34:21 -0600 Subject: Fixing various spelling typos in the docs. --- docs/javascript.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/javascript.html') diff --git a/docs/javascript.html b/docs/javascript.html index 2a3836289..4418e89be 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -136,7 +136,7 @@ $("#myModal").modal('show') // initializes and invokes show immed

Events

Bootstrap provides custom events for most plugin's unique actions. Generally, these come in an infinitive and past participle form - where the infinitive (ex. show) is triggered at the start of an event, and its past participle form (ex. shown) is trigger on the completion of an action.

-

All infinitive events provide preventDefault functionality. This provides the abililty to stop the execution of an action before it starts.

+

All infinitive events provide preventDefault functionality. This provides the ability to stop the execution of an action before it starts.

 $('#myModal').on('show', function (e) {
     if (!data) return e.preventDefault() // stops modal from being shown
@@ -507,7 +507,7 @@ $('#myModal').on('hidden', function () {
 
           

Methods

$().dropdown('toggle')

-

A programatic api for toggling menus for a given navbar or tabbed navigation.

+

A programmatic api for toggling menus for a given navbar or tabbed navigation.

@@ -636,7 +636,7 @@ $('[data-spy="scroll"]').each(function () {

Example tabs

-

Add quick, dynamic tab functionality to transiton through panes of local content, even via dropdown menus.

+

Add quick, dynamic tab functionality to transition through panes of local content, even via dropdown menus.