Skip to content

Commit 0cb594b

Browse files
committed
"Uncaught SyntaxError: Unexpected token var" fixed. Caused by no semicolon at the end of the json object
1 parent ef3d869 commit 0cb594b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opcache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ function toggleVisible(head, row) {
542542
<div id="partition"></div>
543543

544544
<script>
545-
var dataset = <?php echo $dataModel->getGraphDataSetJson(); ?>
545+
var dataset = <?php echo $dataModel->getGraphDataSetJson(); ?>;
546546

547547
var width = 400,
548548
height = 400,

0 commit comments

Comments
 (0)