From 440f38940dcb0727a0f6144e991fcb50ed1d5755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Thu, 26 Aug 2021 13:36:06 +0200 Subject: [PATCH] Docs: Update removal comments to mention 1.14, not 1.13 We're not removing any deprecated API or legacy browser support in 1.13, re-target comments to mention 1.14. It's not guaranteed 1.14 will ever get released but if it will, it sounds like a good moment to do those removals. Closes gh-1970 --- ui/core.js | 2 +- ui/effect.js | 2 +- ui/widgets/droppable.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/core.js b/ui/core.js index bced9ab52..e2dd53007 100644 --- a/ui/core.js +++ b/ui/core.js @@ -1,4 +1,4 @@ -// This file is deprecated in 1.12.0 to be removed in 1.13 +// This file is deprecated in 1.12.0 to be removed in 1.14 ( function() { "use strict"; diff --git a/ui/effect.js b/ui/effect.js index 4f92e4fa2..e2a072d96 100644 --- a/ui/effect.js +++ b/ui/effect.js @@ -704,7 +704,7 @@ $.fn.extend( { // as the .show() below destroys the initial state modes.push( normalizedMode ); - // See $.uiBackCompat inside of run() for removal of defaultMode in 1.13 + // See $.uiBackCompat inside of run() for removal of defaultMode in 1.14 if ( defaultMode && ( normalizedMode === "show" || ( normalizedMode === defaultMode && normalizedMode === "hide" ) ) ) { el.show(); diff --git a/ui/widgets/droppable.js b/ui/widgets/droppable.js index 01de767b4..e33ff8c7a 100644 --- a/ui/widgets/droppable.js +++ b/ui/widgets/droppable.js @@ -241,7 +241,7 @@ $.widget( "ui.droppable", { }, // Extension points just to make backcompat sane and avoid duplicating logic - // TODO: Remove in 1.13 along with call to it below + // TODO: Remove in 1.14 along with call to it below _addHoverClass: function() { this._addClass( "ui-droppable-hover" ); },