Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
13 changed files
with
63 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -23,6 +23,7 @@ | ||
define( [ | ||
"jquery", | ||
"./core", | ||
"./keycode", | ||
"./widget", | ||
"./position", | ||
"./version", | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -24,6 +24,7 @@ | ||
"jquery", | ||
"./core", | ||
"./data", | ||
"./keycode", | ||
"./version", | ||
"./widget" | ||
], factory ); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -23,6 +23,7 @@ | ||
define( [ | ||
"jquery", | ||
"./core", | ||
"./keycode", | ||
"./widget", | ||
"./button", | ||
"./draggable", | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/*! | ||
* jQuery UI Keycode @VERSION | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
*/ | ||
|
||
//>>label: Keycode | ||
//>>group: Core | ||
//>>description: Provide keycodes as keynames | ||
//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/ | ||
|
||
( function( factory ) { | ||
if ( typeof define === "function" && define.amd ) { | ||
|
||
// AMD. Register as an anonymous module. | ||
define( [ "jquery", "./version" ], factory ); | ||
} else { | ||
|
||
// Browser globals | ||
factory( jQuery ); | ||
} | ||
} ( function( $ ) { | ||
return $.ui.keyCode = { | ||
BACKSPACE: 8, | ||
COMMA: 188, | ||
DELETE: 46, | ||
DOWN: 40, | ||
END: 35, | ||
ENTER: 13, | ||
ESCAPE: 27, | ||
HOME: 36, | ||
LEFT: 37, | ||
PAGE_DOWN: 34, | ||
PAGE_UP: 33, | ||
PERIOD: 190, | ||
RIGHT: 39, | ||
SPACE: 32, | ||
TAB: 9, | ||
UP: 38 | ||
}; | ||
|
||
} ) ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -24,6 +24,7 @@ | ||
"jquery", | ||
"./core", | ||
"./version", | ||
"./keycode", | ||
"./widget", | ||
"./position" | ||
], factory ); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -22,7 +22,7 @@ | ||
// AMD. Register as an anonymous module. | ||
define([ | ||
"jquery", | ||
"./core", | ||
"./keycode", | ||
"./mouse", | ||
"./version", | ||
"./widget" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -24,6 +24,7 @@ | ||
"jquery", | ||
"./core", | ||
"./version", | ||
"./keycode", | ||
"./widget", | ||
"./button" | ||
], factory ); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -24,6 +24,7 @@ | ||
"jquery", | ||
"./core", | ||
"./escape-selector", | ||
"./keycode", | ||
"./version", | ||
"./widget" | ||
], factory ); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters