Merge branch 'fix_errors_when_event_not_found' into storageareas

pull/1624/head
Isaac Connor 2016-06-03 10:47:47 -04:00
commit f0ec2a65ee
1 changed files with 4 additions and 4 deletions

View File

@ -26,10 +26,10 @@ var SCALE_BASE = <?php echo SCALE_BASE ?>;
var connKey = '<?php echo $connkey ?>';
var eventData = {
Id: <?php echo $event['Id'] ?>,
Width: <?php echo $event['Width'] ?>,
Height: <?php echo $event['Height'] ?>,
Length: <?php echo $event['Length'] ?>
Id: '<?php echo $event['Id'] ?>',
Width: '<?php echo $event['Width'] ?>',
Height: '<?php echo $event['Height'] ?>',
Length: '<?php echo $event['Length'] ?>'
};
var filterQuery = '<?php echo isset($filterQuery)?validJsStr($filterQuery):'' ?>';