Rename ui folder to event.

This commit is contained in:
Jürg Lehni 2014-10-08 18:32:55 +02:00
parent 5006a0557f
commit 68585276a0
5 changed files with 5 additions and 5 deletions

View file

@ -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);
}

View file

@ -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');