mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Adding minor UI fixes
This commit is contained in:
parent
6cea2f19fc
commit
5b7b4124b0
@ -240,7 +240,7 @@
|
||||
<ul class="uk-nav-sub">
|
||||
<li><a style="margin-left: 20%;" data-toggle="modal" href="/portal/store/carbon.super/fs/gadget/geo-dashboard/controllers/modals/speed_alert.jag"
|
||||
data-target="#commonModal"><i class="fa fa-tachometer"></i> Speed alert</a></li>
|
||||
<li><a style="margin-left: 20%;" data-toggle="modal" href="/portal/store/carbon.super/fs/gadget/geo-dashboard/controllers/modals/proximity_alert.jag"
|
||||
<li id = "proximity_alert"><a style="margin-left: 20%;" data-toggle="modal" href="/portal/store/carbon.super/fs/gadget/geo-dashboard/controllers/modals/proximity_alert.jag"
|
||||
data-target="#commonModal"><i class="fa fa-link"></i> Proximity alert</a></li>
|
||||
<li><a style="margin-left: 20%;" data-toggle="modal" href="/portal/store/carbon.super/fs/gadget/geo-dashboard/controllers/modals/stationery_alert.jag"
|
||||
data-target="#commonModal"><i class="fa fa-chain-broken"></i> Stationary alert</a></li>
|
||||
@ -254,10 +254,6 @@
|
||||
<ul class="uk-nav-sub">
|
||||
<li><a style="margin-left: 20%;" data-toggle="modal" href="/portal/store/carbon.super/fs/gadget/geo-dashboard/controllers/modals/within_alert.jag"
|
||||
data-target="#commonModal"><i class="fa fa-square-o"></i> Within</a></li>
|
||||
<li><a style="margin-left: 20%;color: grey;cursor: not-allowed;"><i
|
||||
class="fa fa-external-link-square"></i> Approaching</a></li>
|
||||
<li><a style="margin-left: 20%;color: grey;cursor: not-allowed;"><i class="fa fa-minus"></i>
|
||||
Cross</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
||||
@ -269,7 +269,6 @@ function processTrafficMessage(json) {
|
||||
}
|
||||
|
||||
function processAlertMessage(json) {
|
||||
//console.log(json);
|
||||
if (json.state != "NORMAL" && json.state != "MINIMAL") {
|
||||
console.log(json);
|
||||
notifyAlert("Object ID: <span style='color: blue;cursor: pointer' onclick='focusOnSpatialObject(" + json.id + ")'>" + json.id + "</span> change state to: <span style='color: red'>" + json.state + "</span> Info : " + json.information);
|
||||
@ -689,6 +688,7 @@ function intializeWebsocketUrls() {
|
||||
.CEP_ON_ALERT_WEB_SOCKET_OUTPUT_ADAPTOR_NAME + ApplicationOptions.constance.PATH_SEPARATOR + ApplicationOptions.constance.VERSION
|
||||
+ "?deviceId=" + deviceId + "&deviceType=" + deviceType;
|
||||
document.cookie = "websocket-token=f98d6142-e988-3c7f-a8c9-7e6d74da7113; path=/";
|
||||
$("#proximity_alert").hide();
|
||||
initializeWebSocket();
|
||||
initializeOnAlertWebSocket();
|
||||
});
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"type": "Feature",
|
||||
"id": {{id}},
|
||||
"deviceId": {{id}},
|
||||
"deviceType" : "{{type}}",
|
||||
"deviceType" : {{type}},
|
||||
"state": {{state}},
|
||||
"information": {{information}},
|
||||
"longitude" : {{longitude}},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user