From 1f71530ee8ddc1283f7ebfe29fe9f35485c4290c Mon Sep 17 00:00:00 2001 From: Patricio Gonzalez Vivo Date: Sun, 28 Feb 2016 19:38:21 -0500 Subject: [PATCH] graphs have no lineNumbers --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 2522026..afcb7c6 100644 --- a/src/main.js +++ b/src/main.js @@ -146,7 +146,7 @@ function loadGlslElements() { for(var i = 0; i < sfList.length; i++){ if (sfList[i].hasAttribute("data")){ var srcFile = sfList[i].getAttribute("data"); - glslGraphs.push(new GlslEditor(sfList[i], { canvas_width: 800, canvas_height: 250, frag_header: preFunction, frag_footer: postFunction }).open(srcFile)); + glslGraphs.push(new GlslEditor(sfList[i], { canvas_width: 800, lineNumbers: false, canvas_height: 250, frag_header: preFunction, frag_footer: postFunction }).open(srcFile)); } } }