aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/showHide.js
Commit message (Collapse)AuthorAgeFilesLines
* Core: Migrate from AMD to ES modules 🎉Michał Gołębiowski-Owczarek2019-11-181-9/+4
| | | | | | | | | | | | | | | | | | | | | | Migrate all source AMD modules to ECMAScript modules. The final bundle is compiled by a custom build process that uses Rollup under the hood. Test files themselves are still loaded via RequireJS as that has to work in IE 11. Tests can now be run in "Load as modules" mode which replaces the previous "Load with AMD" option. That option of running tests doesn't work in IE and Edge as it requires support for dynamic imports. Some of the changes required by the migration: * check `typeof` of `noGlobal` instead of using the variable directly as it's not available when modules are used * change the nonce module to be an object as ECMASscript module exports are immutable * remove some unused exports * import `./core/parseHTML.js` directly in `jquery.js` so that it's not being cut out when the `ajax` module is excluded in a custom compilation Closes gh-4541
* Build: More ESLint related changesOleg Gaidarenko2016-07-091-1/+1
|
* Build: Put all AMD modules in "src/" in strict modeMichał Gołębiowski2016-04-251-0/+2
| | | | Fixes gh-3073
* CSS: Toggle detached elements as visible unless they have display: noneRichard Gibson2016-04-111-6/+1
| | | | | Fixes gh-2863 Closes gh-3037
* Docs:Tests: Remove obsolete code from tests, update support commentsMichał Gołębiowski2016-03-081-1/+1
| | | | | | | | | | Support comments that were lacking the final IE/Edge version that exhibits the bug were checked & updated. Links to the Chromium bug tracker were updated. Code in tests related to unsupported browsers (like Android 2.3 in non-basic tests) has been removed. Fixes gh-2868 Closes gh-2949
* CSS: isHidden -> isHiddenWithinTreeTimmy Willison2016-01-211-3/+3
| | | | | Fixes gh-2404 Close gh-2855
* CSS: Stop Firefox from treating disconnected elements as cascade-hiddenRichard Gibson2016-01-141-1/+6
| | | | | | Fixes gh-2833 Ref dba93f79c405373ec3a492fd0a4bf89b3136a6e6 Close gh-2835
* CSS: Restore cascade-override behavior in .showRichard Gibson2016-01-131-6/+38
| | | | | | | Fixes gh-2654 Fixes gh-2308 Close gh-2810 Ref 86419b10bfa5e3b71a7d416288ab806d47a31d1f
* Effects: fix loading showHide in AMD modeTimmy Willison2015-11-101-0/+1
|
* CSS: fix AMD mode for the new showHide moduleTimmy Willison2015-10-181-1/+2
|
* CSS: Make show/hide/toggle methods a moduleDave Methvin2015-10-181-3/+24
| | | | | | | | Unit test changes some uses of .show() and .hide() to .css( "display", ... ), there was already an implicit assumption in several of the existing tests. Fixes gh-2193 Close gh-2648
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-2/+3
| | | | Fixes gh-2056
* CSS: Ignore the CSS cascade in show()/hide()/etc.Richard Gibson2015-05-111-0/+47
Fixes gh-1767 Fixes gh-2071 Closes gh-2180