From eda30cbf3cb9bd63b2da73f49c9127970590039e Mon Sep 17 00:00:00 2001 From: Imesh Chandrasiri Date: Fri, 30 Jun 2017 14:24:25 +0530 Subject: [PATCH] adding chevron arrow when clicking op.log --- .../app/units/cdmf.unit.device.view/public/js/device-view.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.view/public/js/device-view.js b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.view/public/js/device-view.js index 21df805437..72e1e636bd 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.view/public/js/device-view.js +++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.view/public/js/device-view.js @@ -124,11 +124,13 @@ function loadOperationsLog(update) { if (row.child.isShown()) { row.child.hide(); + tr.find('i.fw-up').removeClass('fw-up').addClass('fw-down'); $(row.child()).removeClass('log-data-row'); tr.removeClass('shown'); } else { invokerUtil.get(uri,(payload) => { row.child(renderLogDetails(row.data(),payload)).show(); + tr.find('i.fw-down').removeClass('fw-down').addClass('fw-up'); $(row.child()).addClass('log-data-row'); tr.addClass('shown'); },(error) => {