aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.widget.js
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2013.Scott González2013-01-101-1/+1
|
* Widget: Don't modify the prototype passed to $.widget(). Fixes #8876 - ↵Scott González2012-12-031-25/+30
| | | | Calling _super calls wrong inherited widget.
* Widget: Only use the event prefix from the base if we're redefining a ↵Scott González2012-11-091-1/+1
| | | | widget. Fixes #8805 - Widget: widgetEventPrefix is incorrect when inheriting with jQuery UI 1.9.1.
* Widget: Suppress disabled check when binding destroy to the remove event. ↵Scott González2012-11-091-1/+1
| | | | Fixes #8769 - Widget: ui-state-disabled blocks destroy to be triggered on remove.
* Widget: Removed dual storage of widget instances. Fixes #8801 - Widget: ↵Scott González2012-11-091-3/+0
| | | | Remove data fallbacks for widget names.
* Widget: Added suppressDisabledCheck flag to _on(). Fixes #8800 - Widget: ↵Scott González2012-11-091-3/+12
| | | | Ability to use _on() even when disabled.
* Widget: Bridge falls back to name if there is no widgetFullName, and always ↵Avinash R2012-11-071-2/+2
| | | | stores instances in data. Fixed #8775 - Widget: Bridge fails if widgetFullName is not supplied.
* Effects: Remove deprecated $.effects[]. Fixes #7115 - Effects: Remove ↵Jörn Zaefferer2012-10-251-1/+1
| | | | support for effects in $.effects[].
* Widget: Removed use of metadata. Fixes #7192 - Widget: Remove use of metadata.Scott González2012-10-251-7/+0
|
* Widget: Removed widgetBaseClass property. Fixes #8155 - Widget: Remove ↵Scott González2012-10-251-2/+0
| | | | widgetBaseClass property.
* Widget: Bind the remove event to the element, not the .widget() element.Scott González2012-10-241-1/+1
|
* Widget: Fix _on to use element argument for delegated events. Fixes #8658 - ↵Jörn Zaefferer2012-10-241-3/+5
| | | | Widget: this._on delegates using instance.widget() instead of passed element
* Widget: Use existing widgetEventPrefix when extending. Fixes #8724 - ↵Scott González2012-10-241-1/+1
| | | | widgetEventPrefix is lost when extending existing widget.
* Widget: Destroy only when element is the actual target. Fixes #8652 - ↵Marc-Andre Lafortune2012-10-231-1/+7
| | | | Widget: Destroy only when element is the actual target.
* Widget: Fixed $.widget.extend() to never copy objects by reference.Scott González2012-10-231-3/+8
|
* Build: Enable "unused" option in jshint - Remove unused variables from ↵Mike Sherov2012-10-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | codebase. - Closes gh-788 Squashed commit of the following: commit 7f19f92c646f180bc067bb24123175251a64a9d6 Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 10:34:28 2012 -0400 put back in fake args for signatures that we want to keep commit 257505a9e69da0c53e3a989dab87a13112045a29 Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 08:10:20 2012 -0400 changes per @scott_gonzalez commit 12725480cb58e70865e5aa6e735009b6b035c8f3 Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:54:05 2012 -0400 clean up unused vars in ui directory commit 563595e7aee5d4a5c096b2d1de655abdf920aacd Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:37:42 2012 -0400 clean up unused vars in grunt and tests
* Widget: $.widget.extend(): Properly handle extending a string with an ↵Scott González2012-10-221-1/+5
| | | | object. Fixes #8713 - Passing an object as ui.resizable handles parameter does not work.
* Updated docs URLS.Scott González2012-09-261-1/+1
|
* Simplify licensing.Scott González2012-08-091-1/+1
|
* Widget: Create lowercase pseudo selectors. Fixes #8433 - Widget: Create ↵Scott González2012-07-091-1/+1
| | | | lowercase pseudo selectors.
* Update copyright to jQuery Foundation.Scott González2012-07-041-1/+2
|
* jQuery may be redefined or not exist do to noConflict, so using the global ↵Steven Roussey2012-06-181-1/+1
| | | | is bad, instead use the scoping function's $
* Widget: Added _off() for removing event handlers. Fixes #7795 - Widget: _on ↵Scott González2012-06-141-0/+5
| | | | and _off.
* Widget: Create eventNamespace property instead of constantly rebuilding it.Scott González2012-06-141-5/+6
|
* Generate a uuid for each widget for unique namespaces. Fixes #8385 - Widget: ↵Jörn Zaefferer2012-06-141-5/+7
| | | | _bind() on elements such as document are dangerous
* Widget: Rename _bind() to _on(). Partial fix for #7795 - Widget: _on and _off.Scott González2012-06-131-5/+5
|
* Widget: Work around bug in jQuery <1.6.3 where .removeData( dashed-name ) ↵Scott González2012-06-111-1/+4
| | | | doesn't work.
* Lint fixes.Scott González2012-04-021-10/+10
|
* Updated copyright year.Scott González2012-03-081-1/+1
|
* Remove both widgetName and widgetFullName dataJörn Zaefferer2012-03-011-0/+3
|
* Update Widget data naming/usage. Remove unnecessary fallbacks, update ↵Jörn Zaefferer2012-03-011-7/+3
| | | | .removeData to use full name.
* Widget: Rename widgetBaseClass to widgetFullName. Deprecates ↵Jörn Zaefferer2012-03-011-5/+7
| | | | widgetBaseClass, to be removed later. Fixes #8154
* Update data naming for Widget, including backwards compability. Updated ↵Jörn Zaefferer2012-03-011-3/+11
| | | | tests and added one for the custom expression. Partial fix for #7810
* JavaScript "strict mode" fixesjdomnitz2012-02-121-1/+1
|
* Widget: Allow redefining a widget after other widgets have inherited from it.Scott González2012-02-011-25/+49
|
* Widget: Added _getCreateEventData(). Fixes #8045 - Widget: Ability to ↵Scott González2012-01-211-1/+2
| | | | provide event data for create event.
* Widget: Set guid on event handler proxies so direct unbinding works.Scott González2012-01-071-0/+7
|
* Widget: Simplify data normalization in _trigger().Scott González2011-11-211-7/+2
|
* Widget: Don't use $.event.props when creating events.Scott González2011-11-211-13/+12
|
* Widget: Remove method argument from _super and _superApply. Was a left-over ↵Jörn Zaefferer2011-11-181-4/+4
| | | | from first implementation, not necessary anymore.
* Widget: Set event.target in ._trigger(). Fixes #7852 - Droppable event ↵Scott González2011-11-101-0/+4
| | | | target changes under jQuery 1.7.
* Widget: Define this.document properly when instantiating a widget on a ↵Scott González2011-11-071-1/+5
| | | | document or window. Fixes #7835 - Undefined property when creating widgets.
* Widget: Use parentWindow if defaultView doesn't exist.Scott González2011-10-211-1/+1
| | | | Thanks ronchalant
* Widget: Added window and document properties. Fixes #7801 - Widget: Add ↵Scott González2011-10-201-0/+2
| | | | document and window properties.
* Widget: Refactoring setOptions loop to remove unnesecary closure / that ↵Corey Frang2011-10-191-4/+5
| | | | reference
* Widget: return timer value from _delayJörn Zaefferer2011-09-121-1/+1
|
* Widget: Get rid of `var self`Jörn Zaefferer2011-09-121-2/+2
|
* Widget: Add a _delay method. Will be used in various places to replace ↵Jörn Zaefferer2011-09-121-0/+9
| | | | setTimeout with custom binding (mostly getting rid of var self/that)
* Widget: Use this.widget() for event delegation.Scott González2011-08-121-1/+1
|
* Widget: Wrap the remove event trigerring in a try/catch. Fixes #7510 - ↵Scott González2011-08-091-1/+4
| | | | jQuery.data throws a script error in certain circumstances.