Fix linting erros

This commit is contained in:
perryharlock
2013-11-27 13:58:55 +00:00
parent f580f00d4c
commit 8657138e13
2 changed files with 3 additions and 2 deletions

View File

@@ -217,7 +217,8 @@ $(document).ready(function(){
previousPoint = item.dataIndex;
$('[data-role="tooltip"]').remove();
var count = item.datapoint[1].toFixed(0);
var date = $.plot.formatDate(new Date(item.datapoint[0]), '%d %b <small> (%H:%M)</small>');
var date = $.plot.formatDate(new Date(item.datapoint[0]), '%d %b' +
'<small> (%H:%M)</small>');
var contents = '<p class="crunch">' +
date + '<br/>' +
count + ' ' + item.series.label +

File diff suppressed because one or more lines are too long