mirror of
https://github.com/apache/cordova-android.git
synced 2026-04-23 00:00:09 +08:00
CB-5346: remove dependency on device plugin
- remove dependency on the device plugin in the js and html - clean out dollar signs chars that were accidently appended to the license - fix punctuation in the viewport value
This commit is contained in:
+2
-11
@@ -18,17 +18,8 @@
|
||||
*/
|
||||
|
||||
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("width").innerHTML = screen.width;
|
||||
document.getElementById("height").innerHTML = screen.height;
|
||||
document.getElementById("colorDepth").innerHTML = screen.colorDepth;
|
||||
var el = document.getElementById("cordova");
|
||||
if (el) {
|
||||
el.innerHTML = device.cordova;
|
||||
}
|
||||
document.getElementById("deviceready").innerHTML = "fired";
|
||||
document.getElementById("cordova").innerHTML = cordova.version;
|
||||
};
|
||||
|
||||
var getLocation = function() {
|
||||
|
||||
Reference in New Issue
Block a user