36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
|
<%- include('comm/header.html') %>
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<div class="col-md-3 col-xs-12">
|
||
|
<div id="tree"></div>
|
||
|
</div>
|
||
|
<div class="col-md-9 col-xs-12 text-cont text-left">
|
||
|
<%= page_cont ? page_cont : '' %>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script type="text/javascript">
|
||
|
$(function () {
|
||
|
var $tree = $('#tree').treeview({
|
||
|
levels: 666,
|
||
|
data: json_tree_network,
|
||
|
showBorder: false,
|
||
|
enableLinks: true,
|
||
|
selectedBackColor: "#1DA57A"
|
||
|
});
|
||
|
$('.navbar-nav li a').each(function () {
|
||
|
if ($(this).attr('href') == '/network') {
|
||
|
$(this).addClass('active');
|
||
|
}
|
||
|
});
|
||
|
$('.treeview ul.list-group li a').each(function () {
|
||
|
if ($($(this))[0].href == String(window.location)) {
|
||
|
$(this).parent().css("color", "#fff");
|
||
|
$(this).parent().css("background-color", "#1DA57A");
|
||
|
}
|
||
|
})
|
||
|
});
|
||
|
</script>
|
||
|
<%- include('comm/footer.html') %>
|
||
|
|