Sha256: 58143faba7e6ce0e50031ea22660ff1eb62bd27f43311a21115e9872a61dc010
Contents?: true
Size: 1012 Bytes
Versions: 2
Compression:
Stored size: 1012 Bytes
Contents
//= require jquery-ui-test/version /*! * jQuery UI Unique ID 1.13.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: uniqueId //>>group: Core //>>description: Functions to generate and remove uniqueId's //>>docs: http://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( $ ) { "use strict"; return $.fn.extend( { uniqueId: ( function() { var uuid = 0; return function() { return this.each( function() { if ( !this.id ) { this.id = "ui-id-" + ( ++uuid ); } } ); }; } )(), removeUniqueId: function() { return this.each( function() { if ( /^ui-id-\d+$/.test( this.id ) ) { $( this ).removeAttr( "id" ); } } ); } } ); } );
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jquery-ui-rails-test-6.0.4 | app/assets/javascripts/jquery-ui-test/unique-id.js |
jquery-ui-rails-test-6.0.3 | app/assets/javascripts/jquery-ui-test/unique-id.js |