X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Ftests%2FDygraphOps.js;h=d792259839cdfe5747d2d838ee2168e369630775;hb=7071b20650f42804b37ecec270bc99729403dd0c;hp=e32660c88364e0522ac371104a6242959ccaa592;hpb=17aad8df5fcf2221055dc6564e7806e72b61e37f;p=dygraphs.git diff --git a/auto_tests/tests/DygraphOps.js b/auto_tests/tests/DygraphOps.js index e32660c..d792259 100644 --- a/auto_tests/tests/DygraphOps.js +++ b/auto_tests/tests/DygraphOps.js @@ -100,7 +100,7 @@ DygraphOps.dispatchDoubleClick = function(g, custom) { type : 'dblclick', detail : 2 }; - var event = DygraphOps.createEvent_(opts, custom); + var event = DygraphOps.createEvent(opts, custom); DygraphOps.dispatchCanvasEvent(g, event); }; @@ -117,7 +117,7 @@ DygraphOps.dispatchMouseDown_Point = function(g, x, y, custom) { clientY : pageY, }; - var event = DygraphOps.createEvent_(opts, custom); + var event = DygraphOps.createEvent(opts, custom); DygraphOps.dispatchCanvasEvent(g, event); } @@ -133,7 +133,7 @@ DygraphOps.dispatchMouseMove_Point = function(g, x, y, custom) { clientY : pageY, }; - var event = DygraphOps.createEvent_(opts, custom); + var event = DygraphOps.createEvent(opts, custom); DygraphOps.dispatchCanvasEvent(g, event); }; @@ -149,7 +149,7 @@ DygraphOps.dispatchMouseUp_Point = function(g, x, y, custom) { clientY : pageY, }; - var event = DygraphOps.createEvent_(opts, custom); + var event = DygraphOps.createEvent(opts, custom); DygraphOps.dispatchCanvasEvent(g, event); };