vendor/assets/javascripts/jquery-ui/unique-id.js in activeadmin-3.2.1 vs vendor/assets/javascripts/jquery-ui/unique-id.js in activeadmin-3.2.2

- old
+ new

@@ -1,32 +1,35 @@ //= require jquery-ui/version /*! - * jQuery UI Unique ID 1.12.1 - * http://jqueryui.com + * jQuery UI Unique ID 1.13.3 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: uniqueId //>>group: Core //>>description: Functions to generate and remove uniqueId's -//>>docs: http://api.jqueryui.com/uniqueId/ +//>>docs: https://api.jqueryui.com/uniqueId/ ( function( factory ) { + "use strict"; + if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./version" ], factory ); } else { // Browser globals factory( jQuery ); } -} ( function( $ ) { +} )( function( $ ) { +"use strict"; return $.fn.extend( { uniqueId: ( function() { var uuid = 0; @@ -46,6 +49,6 @@ } } ); } } ); -} ) ); +} );