Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4A0E9D612 for ; Mon, 19 Nov 2012 21:21:34 +0000 (UTC) Received: (qmail 31824 invoked by uid 500); 19 Nov 2012 21:21:34 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 31806 invoked by uid 500); 19 Nov 2012 21:21:34 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 31799 invoked by uid 500); 19 Nov 2012 21:21:34 -0000 Delivered-To: apmail-incubator-callback-commits@incubator.apache.org Received: (qmail 31796 invoked by uid 99); 19 Nov 2012 21:21:34 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Nov 2012 21:21:34 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id EB249314E22; Mon, 19 Nov 2012 21:21:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bowserj@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: js commit: CB-1855: Adding device.model to the Common JS Message-Id: <20121119212133.EB249314E22@tyr.zones.apache.org> Date: Mon, 19 Nov 2012 21:21:33 +0000 (UTC) Updated Branches: refs/heads/master 48d5bb1be -> 9204c357b CB-1855: Adding device.model to the Common JS Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/9204c357 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/9204c357 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/9204c357 Branch: refs/heads/master Commit: 9204c357ba0b4c93ff6f0b114295c12b5cc9224b Parents: 48d5bb1 Author: Joe Bowser Authored: Mon Nov 19 13:21:17 2012 -0800 Committer: Joe Bowser Committed: Mon Nov 19 13:21:17 2012 -0800 ---------------------------------------------------------------------- lib/common/plugin/device.js | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/9204c357/lib/common/plugin/device.js ---------------------------------------------------------------------- diff --git a/lib/common/plugin/device.js b/lib/common/plugin/device.js index 905bfe1..a6213ea 100644 --- a/lib/common/plugin/device.js +++ b/lib/common/plugin/device.js @@ -38,6 +38,7 @@ function Device() { this.name = null; this.uuid = null; this.cordova = null; + this.model = null; var me = this; @@ -49,6 +50,7 @@ function Device() { me.name = info.name; me.uuid = info.uuid; me.cordova = info.cordova; + me.model = info.model; channel.onCordovaInfoReady.fire(); },function(e) { me.available = false;