From 3447a9454de0ae7b6b76f0e0ce9a3ad29c7d9b53 Mon Sep 17 00:00:00 2001 From: Robert Konigsberg Date: Wed, 22 Feb 2012 18:45:48 -0500 Subject: [PATCH] whitespace cleanup --- auto_tests/tests/callback.js | 58 ++++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/auto_tests/tests/callback.js b/auto_tests/tests/callback.js index 1697e21..fff7f90 100644 --- a/auto_tests/tests/callback.js +++ b/auto_tests/tests/callback.js @@ -20,35 +20,35 @@ CallbackTestCase.prototype.tearDown = function() { "13,0,2,3\n"; - /** - * This tests that when the function idxToRow_ returns the proper row and the onHiglightCallback - * is properly called when the first series is hidden (setVisibility = false) - * - */ - CallbackTestCase.prototype.testHighlightCallbackIsCalled = function() { - var h_row; - var h_pts; - - var highlightCallback = function(e, x, pts, row) { - h_row = row; - h_pts = pts; - }; +/** + * This tests that when the function idxToRow_ returns the proper row and the onHiglightCallback + * is properly called when the first series is hidden (setVisibility = false) + * + */ +CallbackTestCase.prototype.testHighlightCallbackIsCalled = function() { + var h_row; + var h_pts; + + var highlightCallback = function(e, x, pts, row) { + h_row = row; + h_pts = pts; + }; - var graph = document.getElementById("graph"); - var g = new Dygraph(graph, data, - { - width: 100, - height : 100, - visibility: [false, true, true], - highlightCallback : highlightCallback, - }); - - DygraphOps.dispatchMouseMove(g, 13, 10); - - //check correct row is returned - assertEquals(3, h_row); - //check there are only two points (because first series is hidden) - assertEquals(2, h_pts.length); - }; + var graph = document.getElementById("graph"); + var g = new Dygraph(graph, data, + { + width: 100, + height : 100, + visibility: [false, true, true], + highlightCallback : highlightCallback, + }); + + DygraphOps.dispatchMouseMove(g, 13, 10); + + //check correct row is returned + assertEquals(3, h_row); + //check there are only two points (because first series is hidden) + assertEquals(2, h_pts.length); +}; -- 2.7.4