mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Disable output escaping in bind9.xsl
The statistics charts where not displaying on some browsers (e.g. Chrome) due to '>' being escaped as '>'. Use disable-output-escaping="yes" to turn this off.
This commit is contained in:
parent
b4e8e431eb
commit
9b6c018425
1 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@
|
|||
<script type="text/javascript">
|
||||
$(function($) {
|
||||
var wid=0;
|
||||
$('table.zones').each(function(i) { if( $(this).width() > wid ) wid = $(this).width(); return true; });
|
||||
<xsl:text disable-output-escaping="yes">$('table.zones').each(function(i) { if( $(this).width() > wid ) wid = $(this).width(); return true; });</xsl:text>
|
||||
$('table.zones').css('min-width', wid );
|
||||
$("h2+table,h3+table,h4+table,h2+div,h3+div,h2+script,h3+script").prev().append(' <a class="tabletoggle" href="#" style="font-size:small">Show/Hide</a>');
|
||||
$(".tabletoggle").click(function(){
|
||||
|
|
@ -63,7 +63,7 @@
|
|||
var g;
|
||||
|
||||
while (g = graphs.shift()) {
|
||||
if (g.data.length > 1) {
|
||||
<xsl:text disable-output-escaping="yes">if (g.data.length > 1) {</xsl:text>
|
||||
drawChart(g.title,g.target,g.style,g.data);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue