jquery.dirtyforms icon indicating copy to clipboard operation
jquery.dirtyforms copied to clipboard

jquery deprecation warnings

Open sronsiek opened this issue 2 years ago • 1 comments

JQuery migration warnings persistently pollute the console & are quite annoying.

Easy one line fix @ line 174 of jquery.dirtyforms.js:

    // JQMIGRATE: jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos
    // $.extend($.expr[":"], {
    $.extend($.expr.pseudos[":"], {

This removes the warnings - functionality not tested.

sronsiek avatar Aug 19 '23 14:08 sronsiek

Correction - it seems the correct replacement is in fact:

    // JQMIGRATE: jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos
    // $.extend($.expr[":"], {
    $.extend($.expr.pseudos, {

sronsiek avatar Aug 27 '23 09:08 sronsiek