Skip to content

Commit 0f8f481

Browse files
committed
jQuery.widget: Document that widget event names are lowercased
Fixes gh-182 Closes gh-191
1 parent f9671e0 commit 0f8f481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entries/jQuery.widget.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585

8686
<h3>Events</h3>
8787

88-
<p>All widgets have events associated with their various behaviors to notify you when the state is changing. For most widgets, when the events are triggered, the names are prefixed with the widget name. For example, we can bind to progressbar's <code>change</code> event which is triggered whenever the value changes.</p>
88+
<p>All widgets have events associated with their various behaviors to notify you when the state is changing. For most widgets, when the events are triggered, the names are prefixed with the widget name and lowercased. For example, we can bind to progressbar's <code>change</code> event which is triggered whenever the value changes.</p>
8989

9090
<pre><code>
9191
$( "#elem" ).bind( "progressbarchange", function() {

0 commit comments

Comments
 (0)