Commit 8110f0c1 authored by David Schnur's avatar David Schnur

Added missing semicolons.

parent 6c960a8a
...@@ -200,11 +200,11 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L ...@@ -200,11 +200,11 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L
args = {}; args = {};
if (!args.amount) if (!args.amount)
args.amount = plot.getOptions().zoom.amount args.amount = plot.getOptions().zoom.amount;
args.amount = 1 / args.amount; args.amount = 1 / args.amount;
plot.zoom(args); plot.zoom(args);
} };
plot.zoom = function (args) { plot.zoom = function (args) {
if (!args) if (!args)
...@@ -274,7 +274,7 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L ...@@ -274,7 +274,7 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L
if (!args.preventEvent) if (!args.preventEvent)
plot.getPlaceholder().trigger("plotzoom", [ plot, args ]); plot.getPlaceholder().trigger("plotzoom", [ plot, args ]);
} };
plot.pan = function (args) { plot.pan = function (args) {
var delta = { var delta = {
...@@ -322,7 +322,7 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L ...@@ -322,7 +322,7 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L
if (!args.preventEvent) if (!args.preventEvent)
plot.getPlaceholder().trigger("plotpan", [ plot ]); plot.getPlaceholder().trigger("plotpan", [ plot ]);
} };
function shutdown(plot, eventHolder) { function shutdown(plot, eventHolder) {
eventHolder.unbind(plot.getOptions().zoom.trigger, onZoomClick); eventHolder.unbind(plot.getOptions().zoom.trigger, onZoomClick);
......
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