Skip to content
Snippets Groups Projects
Commit 7e1e93c4 authored by juanf's avatar juanf
Browse files

SSDM-306: Dropping ELN Experiment in favour of sub experiments. Step 5

SVN: 31631
parent ec172e1a
No related branches found
No related tags found
No related merge requests found
...@@ -32,11 +32,14 @@ function Inspector(serverFacade, containerId, profile) { ...@@ -32,11 +32,14 @@ function Inspector(serverFacade, containerId, profile) {
this.repaint = function() { this.repaint = function() {
$("#"+containerId).empty(); $("#"+containerId).empty();
var allInspectors = "" var allInspectors = ""
allInspectors += "<div class='row'>";
allInspectors += "<div class='col-md-12' style='margin-top: 10px;'>";
allInspectors += "<a class='btn btn-default' href='javascript:mainController.inspector.printInspectors()'><span class='glyphicon glyphicon-print'></span></a>"; allInspectors += "<a class='btn btn-default' href='javascript:mainController.inspector.printInspectors()'><span class='glyphicon glyphicon-print'></span></a>";
allInspectors += "<div id='inspectorsContainer' class='inspectorsContainer'>"; allInspectors += "<div id='inspectorsContainer' class='inspectorsContainer'>";
allInspectors += this.getAllInspectors(false, true, true, true); allInspectors += this.getAllInspectors(false, true, true, true);
allInspectors += "</div>"; allInspectors += "</div>";
allInspectors += "</div>";
allInspectors += "</div>";
$("#"+containerId).append(allInspectors); $("#"+containerId).append(allInspectors);
} }
......
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