diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-01-04 01:06:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-04 01:06:40 +0100 |
commit | e8b7db4b0f1e1b8e08578641b30a92b955ccc4ec (patch) | |
tree | 98b3df814e7220f2e8b125653b7105452460a213 /src/offset.js | |
parent | 99151d7ab0923aa3aeeb1b957a9063e4e20d31ae (diff) | |
download | jquery-e8b7db4b0f1e1b8e08578641b30a92b955ccc4ec.tar.gz jquery-e8b7db4b0f1e1b8e08578641b30a92b955ccc4ec.zip |
Selector: Eliminate `selector.js` depenencies from various modules
There are two main reasons for why some of those dependencies are no longer
needed:
1. `jQuery.contains` which is now a part of `core`.
2. `jQuery.find.attr` no longer exists, native `getAttribute` is used instead.
Closes gh-5383
Ref gh-5379
Diffstat (limited to 'src/offset.js')
-rw-r--r-- | src/offset.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/offset.js b/src/offset.js index 5a9d3c32e..ca27ca5c7 100644 --- a/src/offset.js +++ b/src/offset.js @@ -5,7 +5,6 @@ import { isWindow } from "./var/isWindow.js"; import "./core/init.js"; import "./css.js"; -import "./selector.js"; // contains jQuery.offset = { setOffset: function( elem, options, i ) { |