removing scrollbars from iframes
authorBrian Flowers <git-admn@bsflowers.net>
Thu, 3 Nov 2016 00:49:56 +0000 (20:49 -0400)
committerBrian Flowers <git-admn@bsflowers.net>
Thu, 3 Nov 2016 00:49:56 +0000 (20:49 -0400)
index.php

index 25b9b0b..e32a40f 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -26,7 +26,7 @@ while($host = $result->fetchArray(SQLITE3_ASSOC))
 foreach ($hosts as $host)
 {
     $host = urlencode($host);
-    echo "<iframe src='graph.php?host=$host' class='graph' />";
+    echo "<iframe src='graph.php?host=$host' class='graph' scrolling='no' />";
 }
 ?>