From: Heinrich Fenkart Date: Fri, 28 Feb 2014 19:11:02 +0000 (+0100) Subject: Fix small typo in JavaScript docs X-Git-Tag: v3.2.0~426^2~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d1fd44b9a9a998850533c1023667e2ee6cb1ad0;p=thirdparty%2Fbootstrap.git Fix small typo in JavaScript docs --- diff --git a/docs/javascript.html b/docs/javascript.html index cc125d8328..bf5944fcba 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -65,7 +65,7 @@ $.fn.bootstrapBtn = bootstrapButton // give $().bootstrapBtn the Boot {% endhighlight %}

Events

-

Bootstrap provides custom events for most plugins' 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.

+

Bootstrap provides custom events for most plugins' 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 triggered on the completion of an action.

As of 3.0.0, all Bootstrap events are namespaced.

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

{% highlight js %}