From b6ce79e323c02649a945815bbb503b630debc43a Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Wed, 28 Aug 2013 06:02:51 +0100 Subject: [PATCH] fix typo in maxlinks plugin code --- plugins/max-links.user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/max-links.user.js b/plugins/max-links.user.js index 0a777c24..3e80b09e 100644 --- a/plugins/max-links.user.js +++ b/plugins/max-links.user.js @@ -101,7 +101,7 @@ window.plugin.maxLinks.updateLayer = function() { drawLink(triangle.c,triangle.a); // we only check the render limit after drawing all three edges of a triangle, for efficency - if (drawnLinkCount > window.pligin.maxLinks.MAX_DRAWN_LINKS ) { + if (drawnLinkCount > window.plugin.maxLinks.MAX_DRAWN_LINKS ) { window.plugin.maxLinks._renderLimitReached = true; return false; //$.each break }