aboutsummaryrefslogtreecommitdiffstats
path: root/ui/widgets/tabs.js
Commit message (Collapse)AuthorAgeFilesLines
* 1.13.21.13.2Michał Gołębiowski-Owczarek2022-07-141-2/+2
|
* Build: Migrate from JSHint & JSCS to ESLintMichał Gołębiowski-Owczarek2021-06-071-2/+5
| | | | | Fixes #15393 Closes gh-1958
* All: Drop $.ui.escapeSelector in favor of $.escapeSelectorMichał Gołębiowski-Owczarek2021-05-141-2/+1
| | | | Fixes #14991 Closes gh-1957
* All: Migrate away from deprecated/removed Core APIsMichał Gołębiowski-Owczarek2019-12-081-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary of the changes: * Build: Add jQuery 3.2.0-3.4.1 to versions UI can be tested against * Build: Load jQuery & Migrate via HTTPS * Build: Add package-lock.json to .gitignore * Build: Update jQuery Migrate from 3.0.0 to 3.1.0 * Build: Allow to run tests against jQuery 3.x-git * Build: Fix formatting according to JSCS rules * Build: Disable JSCS for the inlined jQuery Color * All: Switch from $.isArray to Array.isArray (jQuery.isArray will be removed in jQuery 4.0) * All: Switch from `$.isFunction( x )` to `typeof x === "function"` (jQuery.isFunction will be removed in jQuery 4.0) * All: Inline jQuery.isWindow as it'll be removed in jQuery 4.0 * Effects: Fix a timing issue in a variable declaration. Previously, a jQuery object was created, chained & assigned to a variable that was then accessed in a callback used inside of this chained definition. Due to a timing difference in when the callback fired for the first time in latest jQuery master, it was being called before the variable was defined. * Tests: Make dialog & draggable unit tests less strict (newest jQuery returns fractional results in some cases, making comparisons fail when there's a tiny difference) * All: Migrate from $.trim to bare String.prototype.trim (jQuery.trim will be deprecated in jQuery 3.5) Closes gh-1901
* Core: Fix JQMIGRATE warning about `jQuery.expr[":"]`Eirik Sletteberg2017-05-021-1/+1
| | | | | | | This commit polyfills `jQuery.expr.pseudos` for old versions of jQuery. Fixes #15185 Closes gh-1773
* Tabs: Remove presentation rolemilk542016-09-291-1/+0
| | | | | Fixes #10122 Closes gh-1748
* Tabs: Strip hash from remote content URLsScott González2016-08-311-1/+4
| | | | | | | | As of jQuery 3.0.0, hashes are no longer stripped for Ajax requests. This causes issues in IE <11, so we need to strip this before making the request. Ref jquery/jquery#1732 Closes gh-1736
* Tabs: Fix testScott González2016-05-251-2/+2
|
* Tabs: Fix default `classes` optionScott González2016-05-251-1/+1
| | | | Fixes #14973
* Tabs: Fix line length violationsAlexander Schmitz2016-04-131-1/+2
| | | | Ref gh-1690
* All: Fix manifest issues for categories and CSS dependenciesJörn Zaefferer2015-10-231-3/+3
| | | | | | | Collapses "UI Core" and "Core" into just "Core". Fixes bad paths for CSS dependencies. Regressed when moving widgets into the widgets subfolder.
* Tabs: Adjust handling of disabled option, using _setOptionDisabledJörn Zaefferer2015-09-251-11/+7
| | | | | | | | Tabs support multiple values to disable individual tabs. Only add the ui-tabs-disabled class when all tabs are disabled. Ref #9151 Closes gh-1599
* Tabs: Style updatesAlexander Schmitz2015-09-111-0/+22
| | | | Ref #14246
* Tabs: Style updatesAlexander Schmitz2015-08-211-19/+19
| | | | | Ref #14246 Ref gh-1588
* Tabs: Move tabs into widgets directoryAlexander Schmitz2015-08-081-0/+902
Ref #13885