Device#localStorage

localStorage : boolean Is localStorage available? Source code: utils/Device.js (Line 186)

Device#LITTLE_ENDIAN

LITTLE_ENDIAN : boolean Same value as littleEndian. Source code: utils/Device.js (Line 494)

Device#littleEndian

littleEndian : boolean Is the device big or little endian? (only detected if the browser supports TypedArrays) Source code: utils/Device.js (Line 488)

Device#linux

linux : boolean Is running on linux? Source code: utils/Device.js (Line 130)

Device#isConsoleOpen()

isConsoleOpen() Check whether the console is open.Note that this only works in Firefox with Firebug and earlier versions of Chrome.It used to work in Chrome, but then they removed the ability: http://src.chromium.org/viewvc/blink?view=revision&revision=151136 Source code: utils/Device.js (Line 1324)

Device#isAndroidStockBrowser()

isAndroidStockBrowser() Detect if the host is a an Android Stock browser.This is available before the device "ready" event. Authors might want to scale down on effects and switch to the CANVAS rendering method on those devices. Source code: utils/Device.js (Line 1359) Example var defaultRenderingMode = Phaser.Device.isAndroidStockBrowser() ? Phaser.CANVAS : Phaser.AUTO;

Device#iPhone4

iPhone4 : boolean Is running on iPhone4? Source code: utils/Device.js (Line 468)

Device#iPhone

iPhone : boolean Is running on iPhone? Source code: utils/Device.js (Line 462)

Device#iPad

iPad : boolean Is running on iPad? Source code: utils/Device.js (Line 474)

Device#iOSVersion

iOSVersion : number If running in iOS this will contain the major version number. Source code: utils/Device.js (Line 64)