Updated Branches: refs/heads/master cf3e6ac50 -> 31aae40f8
[CB-3789] Remove device.name from mobile-spec (removed in 2.8) Project: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/commit/31aae40f Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/31aae40f Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/31aae40f Branch: refs/heads/master Commit: 31aae40f8faae3f9432280367bfc7790395686a1 Parents: cf3e6ac Author: Bryan Higgins <[email protected]> Authored: Thu Jun 13 09:58:57 2013 -0400 Committer: Bryan Higgins <[email protected]> Committed: Thu Jun 13 09:58:57 2013 -0400 ---------------------------------------------------------------------- index.html | 1 - main.js | 1 - 2 files changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/31aae40f/index.html ---------------------------------------------------------------------- diff --git a/index.html b/index.html index 2c5447b..727c504 100644 --- a/index.html +++ b/index.html @@ -37,7 +37,6 @@ <h4>Platform: <span id="platform"> </span></h4> <h4>Version: <span id="version"> </span></h4> <h4>UUID: <span id="uuid"> </span></h4> - <h4>Name: <span id="name"> </span></h4> <h4>Model: <span id="model"> </span></h4> <h4>Width: <span id="width"> </span>, Height: <span id="height"> </span>, Color Depth: <span id="colorDepth"></span></h4> http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/31aae40f/main.js ---------------------------------------------------------------------- diff --git a/main.js b/main.js index 66c1bd3..5f071c4 100644 --- a/main.js +++ b/main.js @@ -23,7 +23,6 @@ var deviceInfo = function() { document.getElementById("platform").innerHTML = device.platform; document.getElementById("version").innerHTML = device.version; document.getElementById("uuid").innerHTML = device.uuid; - document.getElementById("name").innerHTML = device.name; document.getElementById("model").innerHTML = device.model; document.getElementById("width").innerHTML = screen.width; document.getElementById("height").innerHTML = screen.height;
