From 55804ab32d3889a0566ffc85280fa6f75bc45a48 Mon Sep 17 00:00:00 2001 From: Conor Mongey Date: Sat, 20 Oct 2012 23:04:39 +0100 Subject: [PATCH] Fix scatter bug --- nv.d3.js | 2 +- src/models/line.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nv.d3.js b/nv.d3.js index 0e0f087..7b1cef4 100644 --- a/nv.d3.js +++ b/nv.d3.js @@ -3385,7 +3385,7 @@ nv.models.line = function() { defsEnter.append('clipPath') - .attr('id', 'nv-edge-clip-' + scattter.id()) + .attr('id', 'nv-edge-clip-' + scatter.id()) .append('rect'); wrap.select('#nv-edge-clip-' + scatter.id() + ' rect') diff --git a/src/models/line.js b/src/models/line.js index b24888f..78629e0 100644 --- a/src/models/line.js +++ b/src/models/line.js @@ -89,7 +89,7 @@ nv.models.line = function() { defsEnter.append('clipPath') - .attr('id', 'nv-edge-clip-' + scattter.id()) + .attr('id', 'nv-edge-clip-' + scatter.id()) .append('rect'); wrap.select('#nv-edge-clip-' + scatter.id() + ' rect')