aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.widget.js
Commit message (Collapse)AuthorAgeFilesLines
* Widget: show/hide effects added BackCompatgnarf2011-05-021-2/+2
|
* widget: Updating code for show/hide to use new effects API namespace - ↵gnarf2011-05-021-12/+3
| | | | DRY'ed out a bit as well
* Merge branch 'master' into tooltip-animationsJörn Zaefferer2011-05-021-1/+4
|\
| * Widget: define a null default for the create callback.Scott González2011-04-251-1/+4
| |
* | Tooltip: Overhaul widget animations code to allow delay with plain show/hideJörn Zaefferer2011-05-021-5/+16
| |
* | Tooltip: Add support for delaying showing/hiding. Still need to figurejzaefferer2011-04-211-1/+3
| | | | | | | | out how to combine that with non-animated show/hide.
* | Custom tooltip animations based on widget-animations branch.jzaefferer2011-04-151-0/+20
|/
* Widget: Allow setting individual properties of deep options. Fixes #7035 - ↵Scott González2011-03-241-3/+18
| | | | Widget: Extend .option() to set partial nested options.
* Widget: Deprecated use of metadata plugin. Fixes #7191 - Widget: Deprecate ↵Scott González2011-03-231-3/+8
| | | | use of metadata.
* Widget: Maintain stack when a method returns a jQuery object. Fixes #5732 - ↵Scott González2011-03-221-1/+3
| | | | Widget: Make the widget method maintain the stack.
* Widget: Accept selectors and DOM elements as element-argument to _bindjzaefferer2011-03-171-0/+2
|
* Widget: modified widget to throw exception on attempt to call private ↵William Kevin Manire2011-02-161-6/+1
| | | | methods. Fixed #6947 - Attempt to access private member of widget returns jQuery object
* Widget: Handle super calls when method calls go up and down the inheritance ↵Scott González2011-02-111-1/+11
| | | | chain.
* Widget: Only create _super and _superApply once per method, then assign on ↵Scott González2011-02-101-5/+9
| | | | every execution.
* Widget: Fixed super methods with deep inheritance chains.Scott González2011-02-101-11/+18
|
* Widget: Added ability to use $.widget() to create extensions. Fixes #6937 - ↵Scott González2011-02-031-1/+1
| | | | Widget: Allow redefining a widget to create extensions.
* Widget: Modified _trigger to invoke callbacks with apply so that handlers ↵Michael DellaNoce2011-02-011-3/+8
| | | | are invoked the same way .trigger() invokes them. Fixes #6795 - Widget: _trigger passes array arguments to handlers inconsistently.
* Merge branch 'master' into widget-eventsScott González2011-01-311-5/+20
|\ | | | | | | | | Conflicts: ui/jquery.ui.widget.js
| * Optimize widget's _createWidget method to not store data and bind removejzaefferer2011-01-311-7/+8
| | | | | | | | when dealing with an instance without an element (element == instance).
| * Widget: Allow this.element to be the widget instance instead of a DOM ↵Scott González2011-01-241-1/+1
| | | | | | | | element. Fixes #6895 - Widget: Allow non-DOM based widget.
| * Widget: Removed comment about storing instances in jQuery.data twice since ↵Scott González2011-01-231-2/+0
| | | | | | | | we now only do it once.
| * Widget: Allow instantiation without the new keyword.Scott González2011-01-221-1/+13
| |
| * Widget: Added ability to generate an item if no item is passed on creation.Scott González2011-01-221-0/+2
| |
* | Widget: Use focusin/focusout for ._focusable().Scott González2011-01-311-3/+7
| |
* | Widget: Added _hoverable() and _focusable().Scott González2011-01-211-0/+34
| |
* | Widget: Added "dynamic" bindings via ._bind() to allow for proxying.Scott González2011-01-181-6/+3
| |
* | Widget: Added ._bind() for easily binding events with correct context and ↵Scott González2011-01-181-0/+22
|/ | | | disabled checking. Pretty much a direct copy from the previous bind branch.
* Updated copyright year.Scott González2011-01-171-1/+1
|
* Widget: destroy() now calls _destroy() so that widgets don't need to call ↵Scott González2011-01-141-2/+4
| | | | the base destroy method. Fixes #5056 - Widget factory: Remove need to call base destroy method.
* Widget: Added _super() and _superApply() methods. Fixes #6861 - Widget: Add ↵Scott González2011-01-141-2/+12
| | | | _super() and _superApply() for easy access to parent methods.
* Widget: Removed unnecessary/incorrect logic for widgetEventPrefix.Scott González2011-01-131-1/+1
|
* Widget: Removed commented out code.Scott González2011-01-131-5/+0
|
* Widget: Removed code for the remove event in jQuery < 1.4.Scott González2011-01-131-24/+7
|
* All: Use .toggleClass() instead of conditionally using .addClass() and ↵Xavi2010-12-191-3/+1
| | | | .removeClass(). Fixes #6764 - Use toggleClass instead of [ bool ? 'addClass' : 'removeClass' ].
* Widget: Throw errors for invalid method calls. Fixes #5972 - Widget: Throw ↵Scott González2010-12-101-13/+9
| | | | error for non-existent method calls.
* Widget: Don't throw errors for invalid method calls (wait till 1.9 to add ↵Scott González2010-10-211-9/+13
| | | | this back). Reverts fix for #5972 - Widget: Throw error for non-existent method calls.
* Widget: Fixed reference to element in _getCreateOptions().Scott González2010-10-191-1/+1
|
* Widget: Simplified _getCreateOptions().Scott González2010-10-071-5/+1
|
* Widget: Added ability to define how to find options on init. Fixes #6158 - ↵Scott González2010-10-061-1/+8
| | | | Widget: Ability to define new methods for gathering options on init.
* Widget: Added create event. Fixes #6126 - Widget: Add create event.Scott González2010-09-291-0/+1
|
* Widget: Added _setOptions method for handling normalized options setting. ↵Scott González2010-09-271-4/+9
| | | | Fixes #6114 - Widget: Add _setOptions() method.
* Widget: Use charAt instead of substring for private method check.Daniel Steigerwald2010-09-201-1/+1
|
* Widget: Hook into jQuery.cleanData to auto-destroy widgets. Fixes #6008 - ↵Scott González2010-09-031-13/+23
| | | | Widget: auto-destroy is broken in jQuery 1.4.
* Widget: Throw errors when calling non-existent methods or methods on ↵Scott González2010-08-271-4/+9
| | | | uninistantiated widgets. Fixes #5972 - Widget: Throw error for non-existent method calls.
* Widget: Refactored code for re-initialization to reduce file size.Scott González2010-08-231-4/+1
|
* Revert "Use pushStack in widget method. Fixes #5732 - make the widget method ↵Scott González2010-07-301-1/+1
| | | | | | maintain the stack" This reverts commit ea58cd5ac0d852a9c7d7ceadbcbb74006cf9052d.
* Use pushStack in widget method. Fixes #5732 - make the widget method ↵jzaefferer2010-07-301-1/+1
| | | | maintain the stack
* Replace element.data(...) with $.data(element, ...). Fixes #5756 - Widget: ↵jzaefferer2010-07-301-1/+2
| | | | Use $.data instead of .data for performance reasons
* Widget: Deep extend options when creating a new plugin. Fixes #5830 - ↵Scott González2010-07-151-1/+1
| | | | Widget: Using inheritance overwrites the base classes options.
* All: Added http://jqueryui.com/about to header comments.Scott González2010-07-141-1/+1
|