diff options
author | zefanja <zefanja@freenet.de> | 2014-01-06 10:28:10 +0700 |
---|---|---|
committer | zefanja <zefanja@freenet.de> | 2014-01-06 10:28:10 +0700 |
commit | 6780ce20e0d986ba0aca8ba267106f949727ad81 (patch) | |
tree | 2a1e0dbed449feeb71fdca3691e04205daf9e759 /source/main.js | |
parent | 1d49fa1ffce521e5f169f5e70375961e6c5dfcde (diff) | |
download | biblez-ng-6780ce20e0d986ba0aca8ba267106f949727ad81.tar.gz |
* added support for androidFirefox (untested!)
Diffstat (limited to 'source/main.js')
-rw-r--r-- | source/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/main.js b/source/main.js index 663019b..0d74ecf 100644 --- a/source/main.js +++ b/source/main.js @@ -201,7 +201,7 @@ enyo.kind({ this.$.moduleMenu.render(); this.doModuleChanged({module: this.currentModule}); - if(enyo.platform.firefox) + if(enyo.platform.firefox || enyo.platform.androidFirefox) this.$.bcSelector.setModule(this.currentModule); //Load the verses @@ -380,7 +380,7 @@ enyo.kind({ }, handleBcSelector: function (inSender, inEvent) { - if(enyo.platform.firefox) { + if(enyo.platform.firefox || enyo.platform.androidFirefox) { this.$.bcPopup.showAtEvent(inEvent); //this.$.bcSelector.setPanel(0); } else |