mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Setting device id and type to page title
This commit is contained in:
parent
2639c90e50
commit
c1de144bcf
@ -41,10 +41,24 @@ function initialLoad() {
|
|||||||
processAfterInitializationMap();
|
processAfterInitializationMap();
|
||||||
//Access gps and make zoom to server location as map center
|
//Access gps and make zoom to server location as map center
|
||||||
//navigator.geolocation.getCurrentPosition(success, error);
|
//navigator.geolocation.getCurrentPosition(success, error);
|
||||||
|
setPageTitle();
|
||||||
$("#loading").hide();
|
$("#loading").hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setPageTitle() {
|
||||||
|
var hash = window.parent.location.hash;
|
||||||
|
if(hash) {
|
||||||
|
var startIdx = hash.indexOf("/") + 1;
|
||||||
|
var lastIdx = hash.length;
|
||||||
|
var deviceInfoString = hash.substring(startIdx,lastIdx);
|
||||||
|
var deviceInfo = JSON.parse(deviceInfoString);
|
||||||
|
if(deviceInfo) {
|
||||||
|
var newTitle = " Geo Dashboard - Device ID: " + deviceInfo.device.id + " Type: " + deviceInfo.device.type;
|
||||||
|
window.parent.document.title = newTitle;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//function success(position) {
|
//function success(position) {
|
||||||
// var browserLatitude = position.coords.latitude;
|
// var browserLatitude = position.coords.latitude;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user