From: Nick Downie Date: Sat, 3 Jan 2015 15:40:47 +0000 (+0000) Subject: Remove unnecessary semicolons X-Git-Tag: v1.0.1~6^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81d4f97abc11420cf16e131e5c169c2baae9a152;p=thirdparty%2FChart.js.git Remove unnecessary semicolons --- 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