Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/html/play.js
diff options
context:
space:
mode:
Diffstat (limited to 'html/play.js')
-rw-r--r--html/play.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/html/play.js b/html/play.js
new file mode 100644
index 0000000..d0d2695
--- /dev/null
+++ b/html/play.js
@@ -0,0 +1,28 @@
+
+
+// Learn app class
+enyo.kind({
+ name: "Abcd.Play",
+ kind: enyo.Control,
+ classes: "board",
+ components: [
+ {components: [
+ {name: "home", kind: "Abcd.HomeButton"},
+ {kind: "Abcd.CaseButton"},
+ {kind: "Abcd.LanguageButton"}
+ ]}
+ ],
+
+ // Constructor, save home
+ create: function() {
+ this.inherited(arguments);
+ },
+
+ // Localization changed
+ setLocale: function() {
+ },
+
+ // Case changed
+ setCase: function() {
+ }
+});