From: Robert Konigsberg <konigsberg@google.com>
Date: Tue, 14 Jun 2011 18:04:52 +0000 (-0400)
Subject: typo.
X-Git-Tag: v1.0.0~458^2~6
X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=17aad8df5fcf2221055dc6564e7806e72b61e37f;p=dygraphs.git

typo.
---

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);
 }