mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Removing unsupported js operations
To enable IE support removed the => operation frommthe logic
This commit is contained in:
parent
967582d0c3
commit
8bab4601f4
@ -145,7 +145,9 @@ function loadOperationsLog(update) {
|
||||
$(row.child()).removeClass('log-data-row');
|
||||
tr.removeClass('shown');
|
||||
} else {
|
||||
invokerUtil.get(uri,(payload) => {
|
||||
invokerUtil.get(uri, function (payload) {
|
||||
|
||||
} {
|
||||
//update the parent status
|
||||
var payloadObject = JSON.parse(payload);
|
||||
if ( payloadObject["activityStatus"][0]["status"] != rowData["status"] ) {
|
||||
@ -157,7 +159,7 @@ function loadOperationsLog(update) {
|
||||
tr.find('i.fw-down').removeClass('fw-down').addClass('fw-up');
|
||||
$(row.child()).addClass('log-data-row');
|
||||
tr.addClass('shown');
|
||||
},(error) => {
|
||||
},function(error) {
|
||||
|
||||
},contentType);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user