From 17aad8df5fcf2221055dc6564e7806e72b61e37f Mon Sep 17 00:00:00 2001 From: Robert Konigsberg Date: Tue, 14 Jun 2011 14:04:52 -0400 Subject: [PATCH] typo. --- auto_tests/tests/DygraphOps.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_tests/tests/DygraphOps.js b/auto_tests/tests/DygraphOps.js index 4dae18e..e32660c 100644 --- a/auto_tests/tests/DygraphOps.js +++ b/auto_tests/tests/DygraphOps.js @@ -51,7 +51,7 @@ DygraphOps.defaultEvent_ = { * @param command the command to create. * @param custom an associative array of event attributes and their new values. */ -DygraphOps.createEvent_ = function(command, custom) { +DygraphOps.createEvent = function(command, custom) { var copy = function(from, to) { if (from != null) { @@ -91,7 +91,7 @@ DygraphOps.createEvent_ = function(command, custom) { /** * Dispatch an event onto the graph's canvas. */ -DygraphOps.dispatchCanvasEvent(g, event) { +DygraphOps.dispatchCanvasEvent = function(g, event) { g.canvas_.dispatchEvent(event); } -- 2.7.4