corrade-http-templates – Blame information for rev 57

Subversion Repositories:
Rev:
Rev Author Line No. Line
57 office 1 /*!
2 * jQuery UI Keycode 1.12.1
3 * http://jqueryui.com
4 *
5 * Copyright jQuery Foundation and other contributors
6 * Released under the MIT license.
7 * http://jquery.org/license
8 */
9  
10 //>>label: Keycode
11 //>>group: Core
12 //>>description: Provide keycodes as keynames
13 //>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/
14  
15 ( function( factory ) {
16 if ( typeof define === "function" && define.amd ) {
17  
18 // AMD. Register as an anonymous module.
19 define( [ "jquery", "./version" ], factory );
20 } else {
21  
22 // Browser globals
23 factory( jQuery );
24 }
25 } ( function( $ ) {
26 return $.ui.keyCode = {
27 BACKSPACE: 8,
28 COMMA: 188,
29 DELETE: 46,
30 DOWN: 40,
31 END: 35,
32 ENTER: 13,
33 ESCAPE: 27,
34 HOME: 36,
35 LEFT: 37,
36 PAGE_DOWN: 34,
37 PAGE_UP: 33,
38 PERIOD: 190,
39 RIGHT: 39,
40 SPACE: 32,
41 TAB: 9,
42 UP: 38
43 };
44  
45 } ) );