aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation/domManip.js
Commit message (Collapse)AuthorAgeFilesLines
* Data: Refactor to reduce sizeRichard Gibson2024-01-221-1/+1
| | | | | | * Return the new value from `set(owner, key, value)`. * Use `set(owner, key, value)` rather than `access(owner, key, value)`. Close gh-5392
* Core: Use named exports in `src/`Michał Gołębiowski-Owczarek2023-09-121-10/+8
| | | | | | | | | The `default` export is treated differently across tooling when transpiled to CommonJS - tools differ on whether `module.exports` represents the full module object or just its default export. Switch `src/` modules to named exports for tooling consistency. Fixes gh-5262 Closes gh-5292
* Docs: Fix typos found by codespellDimitri Papadopoulos Orfanos2023-06-281-1/+1
| | | Closes gh-5165
* Manipulation: Extract domManip to a separate fileMichał Gołębiowski-Owczarek2022-10-101-0/+109
We've already had `buildFragment` extracted to a separate file long ago. `domManip` is quite a complex & crucial API and so far it has existed within the `manipulation.js` module. Extracting it makes the module shorter and easier to understand. A few comments / messages in tests have also been updated to not suggest there's a public `jQuery.domManip` API - it's been private since 3.0.0. Closes gh-5138