Device detection of Apache Cordova

Simple check if "window.cordova" is defined for device detection of Phaser running (most likely) under Apache Cordova.
This commit is contained in:
Dan Cox 2014-08-11 12:33:06 -04:00
parent 6da5831f73
commit d54725212f

View file

@ -37,6 +37,12 @@ Phaser.Device = function (game) {
* @default
*/
this.cocoonJS = false;
/**
* @property {boolean} cordova - Is the game running under Apache Cordova?
* @default
*/
this.cordova = false;
/**
* @property {boolean} ejecta - Is the game running under Ejecta?
@ -620,6 +626,11 @@ Phaser.Device.prototype = {
{
this.webApp = true;
}
if (typeof window.cordova !== "undefined")
{
this.cordova = true;
}
if (navigator['isCocoonJS'])
{