From 81d4f97abc11420cf16e131e5c169c2baae9a152 Mon Sep 17 00:00:00 2001 From: Nick Downie Date: Sat, 3 Jan 2015 15:40:47 +0000 Subject: [PATCH] Remove unnecessary semicolons --- src/Chart.Core.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Chart.Core.js b/src/Chart.Core.js index f1a3869c4..cfea31390 100755 --- a/src/Chart.Core.js +++ b/src/Chart.Core.js @@ -238,7 +238,7 @@ if (filterCallback(currentItem)){ return currentItem; } - }; + } }, findPreviousWhere = helpers.findPreviousWhere = function(arrayToSearch, filterCallback, startIndex){ // Default to end of the array @@ -250,7 +250,7 @@ if (filterCallback(currentItem)){ return currentItem; } - }; + } }, inherits = helpers.inherits = function(extensions){ //Basic javascript inheritance based on the model created in Backbone.js