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
This commit is contained in:
Michał Gołębiowski-Owczarek 2021-08-26 13:36:06 +02:00 committed by GitHub
parent 349ee77924
commit 440f38940d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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";

View File

@ -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();

View File

@ -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" );
},