Commit e1cd9760 authored by Nick Schonning's avatar Nick Schonning

JSCS: Remove multiple line breaks

parent 20d8194b
...@@ -811,7 +811,6 @@ Licensed under the MIT license. ...@@ -811,7 +811,6 @@ Licensed under the MIT license.
draw(); draw();
bindEvents(); bindEvents();
function executeHooks(hook, args) { function executeHooks(hook, args) {
args = [plot].concat(args); args = [plot].concat(args);
for (var i = 0; i < hook.length; ++i) { for (var i = 0; i < hook.length; ++i) {
...@@ -3209,7 +3208,6 @@ Licensed under the MIT license. ...@@ -3209,7 +3208,6 @@ Licensed under the MIT license.
} }
} }
// interactive features // interactive features
var highlights = [], var highlights = [],
......
...@@ -117,7 +117,6 @@ The plugin allso adds the following methods to the plot object: ...@@ -117,7 +117,6 @@ The plugin allso adds the following methods to the plot object:
return; return;
} }
// cancel out any text selections // cancel out any text selections
document.body.focus(); document.body.focus();
...@@ -338,7 +337,6 @@ The plugin allso adds the following methods to the plot object: ...@@ -338,7 +337,6 @@ The plugin allso adds the following methods to the plot object:
} }
}); });
plot.hooks.drawOverlay.push(function(plot, ctx) { plot.hooks.drawOverlay.push(function(plot, ctx) {
// draw selection // draw selection
if (selection.show && selectionIsSane()) { if (selection.show && selectionIsSane()) {
......
...@@ -136,7 +136,6 @@ You may need to check for this in hover events. ...@@ -136,7 +136,6 @@ You may need to check for this in hover events.
plot.hooks.processDatapoints.push(processThresholds); plot.hooks.processDatapoints.push(processThresholds);
function processThresholdsLegend(ctx, canvas, s) { function processThresholdsLegend(ctx, canvas, s) {
if (!s.threshold) { if (!s.threshold) {
return; return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment