</div>
</div>
- <div class="row">
+ <div id="summary-row" class="row">
<div class="col-fixed" id="rrd-pie" >
<span class="notice">Loading..</span>
<noscript>Please enable Javascript</noscript>
<div class="col-fluid">
<table id="rrd-table" class="table table-striped table-hover"></table>
+ <div id="rrd-table_toggle"></div>
</div>
</div>
});
}
+ // Handling mouse events on overlapping elements
+ $("#rrd-pie").mouseover(function () {
+ $("#rrd-pie").css("z-index", "200");
+ $("#rrd-table_toggle").css("z-index", "300");
+ });
+ $("#rrd-table_toggle").mouseover(function () {
+ $("#rrd-pie").css("z-index", "0");
+ $("#rrd-table_toggle").css("z-index", "0");
+ });
+
var interface = {};
interface.draw = function(rspamd, graphs, neighbours, checked_server, type) {