]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Remove unnecessary semicolons
authorNick Downie <hello@nickdownie.com>
Sat, 3 Jan 2015 15:40:47 +0000 (15:40 +0000)
committerNick Downie <hello@nickdownie.com>
Sat, 3 Jan 2015 15:40:47 +0000 (15:40 +0000)
src/Chart.Core.js

index f1a3869c40f3f227aa15b130b3cc5ec2632c562f..cfea31390bbf77f4810e0c038792fcb7aee5d990 100755 (executable)
                                if (filterCallback(currentItem)){
                                        return currentItem;
                                }
-                       };
+                       }
                },
                findPreviousWhere = helpers.findPreviousWhere = function(arrayToSearch, filterCallback, startIndex){
                        // Default to end of the array
                                if (filterCallback(currentItem)){
                                        return currentItem;
                                }
-                       };
+                       }
                },
                inherits = helpers.inherits = function(extensions){
                        //Basic javascript inheritance based on the model created in Backbone.js