From 8110f0c1d93b775b3bf5db1e05c158e36cd485c9 Mon Sep 17 00:00:00 2001 From: David Schnur Date: Sat, 1 Dec 2012 07:43:06 -0500 Subject: [PATCH] Added missing semicolons. --- jquery.flot.navigate.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jquery.flot.navigate.js b/jquery.flot.navigate.js index 301dddf..8f810a9 100644 --- a/jquery.flot.navigate.js +++ b/jquery.flot.navigate.js @@ -200,11 +200,11 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L args = {}; if (!args.amount) - args.amount = plot.getOptions().zoom.amount + args.amount = plot.getOptions().zoom.amount; args.amount = 1 / args.amount; plot.zoom(args); - } + }; plot.zoom = function (args) { if (!args) @@ -274,7 +274,7 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L if (!args.preventEvent) plot.getPlaceholder().trigger("plotzoom", [ plot, args ]); - } + }; plot.pan = function (args) { var delta = { @@ -322,7 +322,7 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L if (!args.preventEvent) plot.getPlaceholder().trigger("plotpan", [ plot ]); - } + }; function shutdown(plot, eventHolder) { eventHolder.unbind(plot.getOptions().zoom.trigger, onZoomClick);