blob: 9769e6219d6544d6093d666f2ed813dc6747f943 [file] [log] [blame]
/*
* Cordova is available under *either* the terms of the modified BSD license *or* the
* MIT License (2008). See http://opensource.org/licenses/alphabetical for full text.
*
* Copyright (c) 2005-2010, Nitobi Software Inc.
* Copyright (c) 2010, IBM Corporation
*/
/**
* This represents the mobile device, and provides properties for inspecting the model, version, UUID of the
* phone, etc.
* @constructor
*/
function Device() {
this.platform = null;
this.version = null;
this.name = null;
this.uuid = null;
};
Cordova.addConstructor(function() {
navigator.device = window.device = window.device || new Device();
Cordova.onCordovaInfoReady.fire();
});