diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-05-07 00:03:19 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-05-15 00:38:40 +0200 |
commit | f90eab84b5e9a65ce62f18106e3db0ee316913f6 (patch) | |
tree | ccc850ea9ed8052a7af352c38b0d310779f08bba | |
parent | bb49bd794bc8ea4238162725b518fb46234f3cf9 (diff) | |
download | jquery-ui-f90eab84b5e9a65ce62f18106e3db0ee316913f6.tar.gz jquery-ui-f90eab84b5e9a65ce62f18106e3db0ee316913f6.zip |
Sortable: Rename `storedStylesheet` to `_storedStylesheet`
This follows the naming strategy for other internal properties.
Ref gh-2249
-rw-r--r-- | ui/widgets/sortable.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ui/widgets/sortable.js b/ui/widgets/sortable.js index 32333b6f5..55b570bb4 100644 --- a/ui/widgets/sortable.js +++ b/ui/widgets/sortable.js @@ -275,7 +275,7 @@ return $.widget( "ui.sortable", $.ui.mouse, { if ( o.cursor && o.cursor !== "auto" ) { // cursor option body = this.document.find( "body" ); - this.storedStylesheet = + this._storedStylesheet = $( "<style>*{ cursor: " + o.cursor + " !important; }</style>" ).appendTo( body ); } @@ -1542,8 +1542,9 @@ return $.widget( "ui.sortable", $.ui.mouse, { } //Do what was originally in plugins - if ( this.storedStylesheet ) { - this.storedStylesheet.remove(); + if ( this._storedStylesheet ) { + this._storedStylesheet.remove(); + this._storedStylesheet = null; } if ( this._storedOpacity ) { this.helper.css( "opacity", this._storedOpacity ); |