aboutsummaryrefslogtreecommitdiffstats
path: root/source/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'source/App.js')
-rw-r--r--source/App.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/source/App.js b/source/App.js
index 1f98230..8aa1e2a 100644
--- a/source/App.js
+++ b/source/App.js
@@ -17,14 +17,16 @@ enyo.kind({
onModuleChanged: "handleChangeModule",
onOpenPreferences: "openPreferences",
onOpenNotes: "openNotes",
- onOpenDataView: "openDataView"
+ onOpenDataView: "openDataView",
+ onOpenAbout: "openAbout"
},
{name: "moduleManager", kind: "biblez.moduleManager", onBack: "handleBack", onInstalled: "handleInstalledModule"},
{name: "bcSelector", kind: "biblez.bcSelector", onSelect: "handlePassageSelect", onBack: "handleBack"},
{name: "moduleManagerDesktop", kind: "biblez.moduleManagerDesktop", onBack: "handleBack", onInstalled: "handleInstalledModule"},
{name: "settings", kind: "biblez.settings", onBack: "handleBack", onChange: "handleSettings"},
{name: "notes", kind: "biblez.notes", onBack: "handleBack", onChange: "handleNote"},
- {name: "dataView", kind: "biblez.dataView", onBack: "handleBack", onVerse: "handleVerse"}
+ {name: "dataView", kind: "biblez.dataView", onBack: "handleBack", onVerse: "handleVerse"},
+ {name: "about", kind: "biblez.about", onBack: "handleBack"}
]}
],
@@ -109,6 +111,10 @@ enyo.kind({
this.$.main.handlePassage(inEvent.osisRef);
this.$.panel.setIndex(0);
return true;
+ },
+
+ openAbout: function (inSender, inEvent) {
+ this.$.panel.setIndex(7);
}
});