Skip to content
Snippets Groups Projects
Commit 2237121d authored by juanf's avatar juanf
Browse files

BIS-604 / SP-1211: ELN UI - Hierarchical View (Glow when modifying visibility...

BIS-604 / SP-1211: ELN UI - Hierarchical View (Glow when modifying visibility + new shape to alter visibility)

SVN: 30804
parent 6df30dfa
No related branches found
No related tags found
No related merge requests found
...@@ -268,6 +268,8 @@ div.inspectorCondensed { ...@@ -268,6 +268,8 @@ div.inspectorCondensed {
display: block; display: block;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
padding: 20px;
border-radius: 90px;
} }
div.inspectorCondensed > .table th, div.inspectorCondensed > .table th,
......
...@@ -337,11 +337,11 @@ function SampleHierarchy(serverFacade, inspector, containerId, profile, sample) ...@@ -337,11 +337,11 @@ function SampleHierarchy(serverFacade, inspector, containerId, profile, sample)
var $hideLink = $('<a>', { var $hideLink = $('<a>', {
'href' : "javascript:mainController.currentView._updateDisplayabilityFor(" + ((sample.hideGraphConnections)?false:true) + ",'" + sample.permId + "');" 'href' : "javascript:mainController.currentView._updateDisplayabilityFor(" + ((sample.hideGraphConnections)?false:true) + ",'" + sample.permId + "');"
}).append( }).append(
$('<i>', { $('<img>', {
'class' : (sample.hideGraphConnections)?'icon-eye-close':'icon-eye-open', 'src' : (sample.hideGraphConnections)?'./img/eye-close-icon.png':'./img/eye-open-icon.png',
'style' : 'cursor:pointer', 'style' : 'cursor:pointer; width:18px; height:18px;',
})); }));
var $dataLink = $('<a>', { var $dataLink = $('<a>', {
'href' : "javascript:mainController.currentView._updateDataFor(" + ((sample.showDataOnGraph)?false:true) + ",'" + sample.permId + "');" 'href' : "javascript:mainController.currentView._updateDataFor(" + ((sample.showDataOnGraph)?false:true) + ",'" + sample.permId + "');"
}).append( }).append(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment