aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.widget.js
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Widget delegation: Small if-simplify refactoringJörn Zaefferer2011-07-281-3/+3
|
* Whitespace cleanupJörn Zaefferer2011-06-201-7/+7
|
* Widget delegation: Fix impl and add basisc testJörn Zaefferer2011-06-191-1/+1
|
* Merge branch 'master' into widget-delegationJörn Zaefferer2011-06-191-5/+9
|\
| * Widget: Added ability to get deep options. Fixes #7459 - Widget: Extend ↵Scott González2011-06-091-5/+9
| | | | | | | | .option() to get partial nested options.
* | Widget delegation: First draftJörn Zaefferer2011-06-081-2/+11
|/
* Widget: Fixed _show() and _hide() implementation and added tests.Scott González2011-05-301-3/+15
|
* All: Moved version numbers into prototypes. Fixed #7436 - Widget: Store ↵Scott González2011-05-281-1/+1
| | | | version numbers on instances.
* Tooltip: Changed custom animation demo and changed the logic for showing ↵Scott González2011-05-281-1/+1
| | | | tooltips so custom position options can perform animations.
* Widget: Added $.widget.extend() which does deep extending, but only on plain ↵Jörn Zaefferer2011-05-111-6/+23
| | | | objects.
* 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.