aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.tabs.js
Commit message (Collapse)AuthorAgeFilesLines
* Tabs: Prevent default action of clicks even when disabled. Fixes #9413 - ↵Scott González2013-07-031-5/+7
| | | | Tabs: Disabled tabs are still clickable.
* Tabs: Restore anchor cloning for remote tab testing. Fixes #9317 - Tabs: ↵Scott González2013-05-221-0/+4
| | | | Incorrect remote tab detection in IE7.
* All: Remove inline JSHint settings.Scott González2013-04-221-1/+0
|
* Update copyright year to 2013.Scott González2013-01-101-1/+1
|
* Tabs: Reduce cyclomatic complexity.Scott González2012-12-061-29/+36
|
* Tabs: Decode URIs before comparing. Fixes #8877 - Tabs: isLocal function ↵Scott González2012-12-051-6/+2
| | | | issue in Safari 5.1.7.
* Revert "Tabs: Remove display property on hidden panels instead of setting ↵Scott González2012-12-041-3/+1
| | | | | | display:block. Surfaced by domEqual now checking for style property (see d687a1b)." This reverts commit b9068c1523f39da8a04c799eebc9adc8b83c7279.
* Tabs: Remove display property on hidden panels instead of setting ↵Jörn Zaefferer2012-12-041-1/+3
| | | | display:block. Surfaced by domEqual now checking for style property (see d687a1b).
* Tabs: Calculate border and padding on tabs container. Fixed #8836: Height ↵David Petersen2012-11-261-0/+2
| | | | overflows parent with heightStyle: 'fill'.
* Tabs: Removed some legacy code that isn't doing anything.Scott González2012-11-161-2/+0
|
* Tabs: Remove ui-tabs-aria-controls data on destroy.Scott González2012-11-161-1/+3
|
* Tabs: Show panels on destroy. Fixes #8795 - Tabs: 'display: none;' attribute ↵Scott González2012-11-091-0/+2
| | | | is not removed from tabs when destroy is called.
* Tabs: Encode spaces from window.location. Fixes #8777 - Tabs fail in Safari ↵Scott González2012-11-061-1/+6
| | | | 5.1 when window.location contains a space.
* Tabs: Removed overflow workaround for IE6.Scott González2012-10-261-12/+1
|
* Tabs: Removed all templating features. Fixes #7158 - Tabs: Remove add and ↵Scott González2012-10-251-134/+0
| | | | remove methods. Fixes #7157 - Tabs: Remove templating (idPrefix, tabTemplate, panelTemplate options). Fixes #7149 - Tabs: Remove use of title attribute.
* Tabs: Removed back-compat for load event. Fixes #8731 - Tabs: Remove ↵Scott González2012-10-251-12/+0
| | | | back-compat for load event.
* Tabs: Removed abort method. Fixes #7150 - Tabs: Remove abort method.Scott González2012-10-251-9/+0
|
* Tabs: Removed spinner option. Fixes #7151 - Tabs: Remove spinner option.Scott González2012-10-251-26/+0
|
* Tabs: Removed selected option. Fixes #7152 - Tabs: Remove selected option.Scott González2012-10-251-36/+0
|
* Tabs: Removed select event. Fixes #7154 - Tabs: Remove select event.Scott González2012-10-251-21/+0
|
* Tabs: Removed show event. Fixes #7155 - Tabs: Remove show event.Scott González2012-10-251-16/+1
|
* Tabs: Removed select method. Fixes #7156 - Tabs: Remove select method.Scott González2012-10-251-15/+0
|
* Tabs: Removed enable and disable events. Fixes #7160 - Tabs: Remove enable ↵Scott González2012-10-251-40/+0
| | | | and disable events.
* Tabs: Removed length method. Fixes #7161 - Tabs: Remove length method.Scott González2012-10-251-7/+0
|
* Tabs: Removed cookie option. Fixes #7162 - Tabs: Remove cookie option.Scott González2012-10-251-52/+0
|
* Tabs: Removed fx option. Fixes #8320 - Tabs: Remove fx option.Scott González2012-10-251-70/+0
|
* Tabs: Removed url method. Fixes #7148 - Tabs: Remove url method.Scott González2012-10-251-7/+0
|
* Tabs: Removed ajaxOptions and cache options. Fixes #7147 - Tabs: Remove ↵Scott González2012-10-251-65/+0
| | | | ajaxOptions and cache options.
* Build: Enable "unused" option in jshint - Remove unused variables from ↵Mike Sherov2012-10-231-7/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Fixed some jshint errors.Scott González2012-10-211-3/+3
|
* Tabs: Remove anchor clone in isLocal. Fixed #8653 - Tabs are not working ↵David Petersen2012-10-161-3/+0
| | | | inside iframe in IE6/7.
* Tabs: Use aria-controls instead of the anchor's href to match against ↵Scott González2012-10-121-4/+5
| | | | location.hash. Fixes #8660 - Tabs: Set initial active tab from location hash for ajax tabs.
* Tabs: Handle extraneous list items when using ui-tabs-active to set the ↵Scott González2012-10-091-1/+1
| | | | initially active tab. Fixes #8568 - jQuery ui tabs: wrong default active li if ul contains extraneous elements.
* Updated docs URLS.Scott González2012-09-261-1/+1
|
* Tabs: Account for non-tab list items on init. Fixes #8568 - jQuery ui tabs: ↵Scott González2012-09-121-1/+1
| | | | wrong default active li if ul contains extraneous elements.
* Tabs: Don't apply a spinner when nested tabs are loading. Fixes #8529 - tabs ↵Scott González2012-08-301-1/+3
| | | | with in tabs, heading appears as Loading....
* Tabs: Set ajaxOptions in intial $.ajax() call. Fixes #8504 - Ajax in Tabs ↵Scott González2012-08-171-20/+31
| | | | not passing data in 1.9. beta 1.
* Simplify licensing.Scott González2012-08-091-1/+1
|
* Update copyright to jQuery Foundation.Scott González2012-07-041-1/+2
|
* Tabs: Change array join to string.Scott González2012-06-141-10/+2
|
* Tabs: Fixed event triggering for select method.Scott González2012-06-141-1/+1
|
* Widget: Added _off() for removing event handlers. Fixes #7795 - Widget: _on ↵Scott González2012-06-141-3/+3
| | | | and _off.
* Tabs: Better event binding/unbinding.Scott González2012-06-131-4/+3
|
* Widget: Rename _bind() to _on(). Partial fix for #7795 - Widget: _on and _off.Scott González2012-06-131-4/+4
|
* Tabs: Removed TODO about making .load() accept nodes; it's unnecessary.Scott González2012-06-121-1/+0
|
* Tabs: Walk previous tabs (and loop) in refresh() in case the tab we're ↵Scott González2012-06-121-3/+13
| | | | trying to activate is disabled.
* Tabs: Rename internal properties.Scott González2012-06-121-37/+37
|
* Tabs: jQuery <1.7.2 treats .data() as a getter if the value to set is undefined.Scott González2012-06-111-7/+9
|
* Tabs: Implement ARIA + Key handling. Fixes #3079 - Tabs: keyboard ↵Scott González2012-06-081-62/+281
| | | | accessibility. Fixes #7845 - Tabs: default accessibility.
* Tabs: Properly remove generated aria-controls attributes on destroy.Scott González2012-05-301-3/+14
|