mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge pull request #527 from dunithd/release-3.0.x
Formatting the anchor text after fixing 500 error
This commit is contained in:
commit
c74e9de2f5
@ -44,7 +44,7 @@
|
|||||||
<li><a class="list-group-item" href="#event_log" role="tab" data-toggle="tab"
|
<li><a class="list-group-item" href="#event_log" role="tab" data-toggle="tab"
|
||||||
aria-controls="event_log">Operations Log</a></li>
|
aria-controls="event_log">Operations Log</a></li>
|
||||||
<li><a class="list-group-item" href="#geo_dashboard" role="tab" data-toggle="tab"
|
<li><a class="list-group-item" href="#geo_dashboard" role="tab" data-toggle="tab"
|
||||||
aria-controls="geo_dashboard">Map</a></li>
|
aria-controls="geo_dashboard">Geo Fencing</a></li>
|
||||||
{{/zone}}
|
{{/zone}}
|
||||||
|
|
||||||
{{#zone "device-view-tab-contents"}}
|
{{#zone "device-view-tab-contents"}}
|
||||||
@ -77,18 +77,18 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="panel panel-default tab-pane"
|
<div class="panel panel-default tab-pane"
|
||||||
id="geo_dashboard" role="tabpanel" aria-labelledby="geo_dashboard">
|
id="geo_dashboard" role="tabpanel" aria-labelledby="geo_dashboard">
|
||||||
<div class="panel-heading">Map</div>
|
<div class="panel-heading">Geo Fencing</div>
|
||||||
|
|
||||||
<div id="chartWrapper">
|
<div id="chartWrapper">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a class="padding-left"
|
<a class="padding-left" target="_blank"
|
||||||
href="{{portalUrl}}/portal/dashboards/geo-dashboard/?GLOBAL-STATE={{anchor}}">
|
href="{{portalUrl}}/portal/dashboards/geo-dashboard/?GLOBAL-STATE={{anchor}}">
|
||||||
|
|
||||||
<span class="fw-stack">
|
<span class="fw-stack">
|
||||||
<i class="fw fw-circle-outline fw-stack-2x"></i>
|
<i class="fw fw-circle-outline fw-stack-2x"></i>
|
||||||
<i class="fw fw-statistics fw-stack-1x"></i>
|
<i class="fw fw-statistics fw-stack-1x"></i>
|
||||||
</span> View Device Location
|
</span> Add Geo Fencing
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{{/zone}}
|
{{/zone}}
|
||||||
|
|||||||
@ -35,11 +35,11 @@ function onRequest(context) {
|
|||||||
"autoCompleteParams": autoCompleteParams,
|
"autoCompleteParams": autoCompleteParams,
|
||||||
"encodedFeaturePayloads": "",
|
"encodedFeaturePayloads": "",
|
||||||
"portalUrl" : devicemgtProps['portalURL'],
|
"portalUrl" : devicemgtProps['portalURL'],
|
||||||
"anchor" : JSON.stringify(anchor)
|
"anchor" : encodeURI(JSON.stringify(anchor))
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
response.sendError(404, "Device Id " + deviceId + " of type " + deviceType + " cannot be found!");
|
response.sendError(404, "Device Id " + deviceId + " of type " + deviceType + " cannot be found!");
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -339,7 +339,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<br/>
|
<br/>
|
||||||
<a class="padding-left" target="_blank"
|
<a class="padding-left" target="_blank"
|
||||||
href="{{portalUrl}}/portal/dashboards/geo-dashboard/?GLOBAL-STATE={{deviceId}},{{deviceType}}">
|
href="{{portalUrl}}/portal/dashboards/geo-dashboard/?GLOBAL-STATE={{anchor}}">
|
||||||
<span class="fw-stack">
|
<span class="fw-stack">
|
||||||
<i class="fw fw-circle-outline fw-stack-2x"></i>
|
<i class="fw fw-circle-outline fw-stack-2x"></i>
|
||||||
<i class="fw fw-map-location fw-stack-1x"></i>
|
<i class="fw fw-map-location fw-stack-1x"></i>
|
||||||
|
|||||||
@ -213,7 +213,6 @@ function onRequest(context) {
|
|||||||
deviceViewData["autoCompleteParams"] = autoCompleteParams;
|
deviceViewData["autoCompleteParams"] = autoCompleteParams;
|
||||||
|
|
||||||
deviceViewData["portalUrl"] = devicemgtProps['portalURL'];
|
deviceViewData["portalUrl"] = devicemgtProps['portalURL'];
|
||||||
deviceViewData["deviceId"] = deviceId;
|
deviceViewData["anchor"] = encodeURI(JSON.stringify({ "device" : { "id" : deviceId, "type" : deviceType}}));
|
||||||
deviceViewData["deviceType"] = deviceType;
|
|
||||||
return deviceViewData;
|
return deviceViewData;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user