mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Rename ui folder to event.
This commit is contained in:
parent
5006a0557f
commit
68585276a0
5 changed files with 5 additions and 5 deletions
|
@ -139,7 +139,7 @@ var Key = new function() {
|
|||
|
||||
DomEvent.add(window, {
|
||||
blur: function(event) {
|
||||
// Fire key-up events for all currently pressed keys.
|
||||
// Emit key-up events for all currently pressed keys.
|
||||
for (var code in charCodeMap)
|
||||
handleKey(false, code, charCodeMap[code], event);
|
||||
}
|
|
@ -112,10 +112,10 @@ var paper = new function(undefined) {
|
|||
/*#*/ include('view/CanvasView.js');
|
||||
|
||||
/*#*/ if (__options.environment == 'browser') {
|
||||
/*#*/ include('ui/Event.js');
|
||||
/*#*/ include('ui/KeyEvent.js');
|
||||
/*#*/ include('ui/Key.js');
|
||||
/*#*/ include('ui/MouseEvent.js');
|
||||
/*#*/ include('event/Event.js');
|
||||
/*#*/ include('event/KeyEvent.js');
|
||||
/*#*/ include('event/Key.js');
|
||||
/*#*/ include('event/MouseEvent.js');
|
||||
|
||||
/*#*/ include('tool/ToolEvent.js');
|
||||
/*#*/ include('tool/Tool.js');
|
||||
|
|
Loading…
Reference in a new issue