aboutsummaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Added version property to plugins that were missing them.Scott González2011-02-035-1/+11
|
* Accordion: Cleaned up destroy and refresh methods.Scott González2011-02-031-11/+17
|
* Accordion: Update active option when programmatically collapsing the accordion.Scott González2011-02-031-0/+1
|
* Accordion: Handle negative values for active option on init.Scott González2011-02-031-0/+4
|
* Accordion: Properly handle collapsible: false and active: false by changing ↵Scott González2011-02-031-0/+10
| | | | active to 0.
* Datepicker: only set the focus explicitly if it is not already on the target ↵Tobias Brunner2011-02-031-1/+3
| | | | | | field. Fixed #6694 – datepicker does not fire change event in IE8 jQuery stores the current content of a field whenever it gets the focus. Since the fixed function is also called for KeyUp events the change event is not triggered anymore when the input looses focus.
* Accordion: Cleanup.Scott González2011-02-021-15/+17
|
* Accordion: Added ui-accordion-header-icon class to generated icons in order ↵Scott González2011-02-021-6/+6
| | | | to not interfere with any additional icons that users might add.
* Resizable: Changed the way box size is determined when using a helper. Fixed ↵George Marshall2011-02-011-3/+3
| | | | #6926 - Window doesn't change to size that helper shows when snapping to grid
* 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-318-165/+239
|\ | | | | | | | | 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).
| * Accordion: added a comment.Scott González2011-01-311-0/+1
| |
| * Accordion: Removed ui-accordion-li-fix class; I couldn't find instances ↵Scott González2011-01-311-6/+1
| | | | | | | | where this caused a problem in IE. Fixed #6892 - Accordion: broken animation in Chrome.
| * Autocomplete: Fixed handling of race conditions when using jQuery 1.3.2. ↵Scott González2011-01-271-6/+8
| | | | | | | | Fixes #6904 - Autocomplete: Race condition handling means.
| * Accordion: Allow canceling the beforeActivate event. Fixes #6896 - ↵Scott González2011-01-251-20/+39
| | | | | | | | Accordion: Allow canceling the beforeActivate event.
| * Accordion: Renamed changestart and change events to beforeActivate and ↵Scott González2011-01-251-3/+19
| | | | | | | | activate, respectively. Fixes #6840 - Accordion: Rename changestart event to beforeActivate. Fixes #6842 - Accordion: Rename change event to activate.
| * Accordion: Test cleanup.Scott González2011-01-241-2/+2
| |
| * Accordion: First pass at splitting out tests for deprecated functionality.Scott González2011-01-241-102/+105
| |
| * 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.
| * All: Define defaultElement for non-div widgets.Scott González2011-01-234-0/+4
| |
| * 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
| |
| * Sortable: Make sure we have a placeholder before trying to remove it during ↵marcos.sousa2011-01-191-14/+16
| | | | | | | | a cancel. Fixes #6879 - Sortable: Calling cancel when there is no sort occurring throws an error.
| * Sortable: pass a fake event object to _mouseUp on cancel. Fixes #5882 - ↵Scott González2011-01-191-1/+1
| | | | | | | | UI.Sortable .sortable( cancel ) call the this._mouseUp method without param.
| * Datepicker i18n: Added Algerian Arabic to demos.Scott González2011-01-191-2/+1
| |
| * Datepicker i18n: Added Algerian Arabic. Fixes #6877 - Datepicker: Add ↵cherif2011-01-191-0/+24
| | | | | | | | Algerian Arabic support.
| * Spinner: Update to latest jquery-global plugin, removing the currencyjzaefferer2011-01-181-8/+2
| | | | | | | | workaround.
* | Tabs: Use ._focusable() and ._hoverable().Scott González2011-01-311-29/+4
| |
* | Widget: Use focusin/focusout for ._focusable().Scott González2011-01-311-3/+7
| |
* | Dialog: Use ._focusable() and ._hoverable().Scott González2011-01-241-14/+2
| |
* | Widget: Added _hoverable() and _focusable().Scott González2011-01-212-25/+38
| |
* | 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.
* Datepicker: Update parseDate to properly handle a string value in ↵Ivan Peters2011-01-181-0/+2
| | | | shortYearCutoff. Fixed #6872: parseDate does not default shortYearCutoff correctly.
* Datepicker i18n: Added Australian and New Zealand localizations. Fixes #6828 ↵Scott González2011-01-172-0/+46
| | | | | | - Datepicker: Add en-AU or en-NZ initialisations. Thanks Campbell
* Updated copyright year.Scott González2011-01-1734-34/+34
|
* Tabs: Pass an element instead of jQuery object on initial show. Fixes #6867 ↵Scott González2011-01-161-1/+1
| | | | - Inconsistent ui.panel contents for show event of tabs widget.
* Spinner: Moved ARIA to input and fixed tests.Scott González2011-01-151-2/+7
|
* Updated widgets to use new methods from $.Widget.Scott González2011-01-156-12/+10
|
* Change destroy to _destroy and remove calls to $.Widget.prototype.destroy in ↵Scott González2011-01-147-20/+7
| | | | widgets with simple destroy methods.
* 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.
* Accordion: Force the width of the accordion panel during animation when ↵Scott González2011-01-141-11/+23
| | | | | | animating from a fully collapsed state. Fixes #5540 - Accordion: Jumpy animation when opening a panel after closing all. The animation code should be refactored.
* Accordion: Renamed resize method to refresh. Fixes #6838 - Accordion: Rename ↵Scott González2011-01-141-2/+5
| | | | resize method to refresh.
* 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
|