Remove empty if statement in element.line.js

This commit is contained in:
Zach Panzarino 2016-08-10 01:39:03 +00:00
parent abfbdd5f31
commit c20d391b49

View File

@ -150,9 +150,7 @@ module.exports = function(Chart) {
// First point moves to it's starting position no matter what
if (index === 0) {
if (currentVM.skip) {
} else {
if (!currentVM.skip) {
ctx.moveTo(currentVM.x, currentVM.y);
lastDrawnIndex = index;
}