From 7838b9e9881a0ae521c9b382347fcff9caea0340 Mon Sep 17 00:00:00 2001 From: TJ VanToll Date: Tue, 21 Jan 2014 17:16:34 -0800 Subject: [PATCH] jQuery.widget: Document that widget event names are lowercased Fixes gh-182 --- entries/jQuery.widget.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml index ed2075ee..68fbff34 100644 --- a/entries/jQuery.widget.xml +++ b/entries/jQuery.widget.xml @@ -85,7 +85,7 @@

Events

-

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 change event which is triggered whenever the value changes.

+

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 change event which is triggered whenever the value changes.


 				$( "#elem" ).bind( "progressbarchange", function() {