aboutsummaryrefslogtreecommitdiff
path: root/js/data/appdata.js
diff options
context:
space:
mode:
authorPierre Frisch2011-12-22 07:25:50 -0800
committerValerio Virgillito2012-01-27 11:18:17 -0800
commitb89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch)
tree0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/data/appdata.js
parent2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff)
downloadninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/data/appdata.js')
-rw-r--r--js/data/appdata.js58
1 files changed, 58 insertions, 0 deletions
diff --git a/js/data/appdata.js b/js/data/appdata.js
new file mode 100644
index 00000000..0a6c4976
--- /dev/null
+++ b/js/data/appdata.js
@@ -0,0 +1,58 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7var Montage = require("montage/core/core").Montage,
8 Component = require("montage/ui/component").Component;
9
10Keyboard = {
11 BACKSPACE:8,
12 TAB:9,
13 ENTER:13,
14 DELETE:46,
15 LEFT:37,
16 UP:38,
17 RIGHT:39,
18 DOWN:40,
19 ESCAPE: 27,
20
21 A:65,
22 B:66,
23 C:67,
24 D:68,
25 E:69,
26 F:70,
27 G:71,
28 H:72,
29 I:73,
30 J:74,
31 K:75,
32 L:76,
33 M:77,
34 N:78,
35 O:79,
36 P:80,
37 Q:81,
38 R:82,
39 S:83,
40 T:84,
41 U:85,
42 V:86,
43 W:87,
44 X:88,
45 Y:89,
46 Z:90,
47 PLUS:187,
48 MINUS:189
49};
50
51exports.AppData = Montage.create( Component, {
52 PILiveUpdate: {
53 value: false
54 }
55});
56
57
58