vendor/assets/javascripts/jquery-ui/keycode.js in activeadmin-3.2.1 vs vendor/assets/javascripts/jquery-ui/keycode.js in activeadmin-3.2.2
- old
+ new
@@ -1,32 +1,36 @@
//= require jquery-ui/version
/*!
- * jQuery UI Keycode 1.12.1
- * http://jqueryui.com
+ * jQuery UI Keycode 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: Keycode
//>>group: Core
//>>description: Provide keycodes as keynames
-//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/
+//>>docs: https://api.jqueryui.com/jQuery.ui.keyCode/
( 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 $.ui.keyCode = {
BACKSPACE: 8,
COMMA: 188,
DELETE: 46,
DOWN: 40,
@@ -42,6 +46,6 @@
SPACE: 32,
TAB: 9,
UP: 38
};
-} ) );
+} );