summaryrefslogtreecommitdiff
path: root/js/lib/node.js
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-09 13:26:58 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-09 13:26:58 -0800
commit0d9c230a46f1bf79d4be81cb42cfaebc6f5b5ced (patch)
tree378e311e44ad77078eb2ebc8ef5c303e7d17662e /js/lib/node.js
parenteb6a4c5c5387dde76b9c9cef8260b5b70835e2cf (diff)
Made `tight` a property of `list_data`.
Diffstat (limited to 'js/lib/node.js')
-rw-r--r--js/lib/node.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/lib/node.js b/js/lib/node.js
index 5f82eca..5e5d5b0 100644
--- a/js/lib/node.js
+++ b/js/lib/node.js
@@ -74,7 +74,6 @@ function Node(nodeType, pos) {
this.string_content = "";
this.c = undefined;
this.list_data = undefined;
- this.tight = undefined;
this.info = undefined;
this.destination = undefined;
this.title = undefined;
@@ -169,7 +168,7 @@ Node.prototype.toAST = function() {
var result = { t: this.t };
var propsToShow = ['t', 'c', 'list_data', 'string_content',
- 'pos', 'tight', 'info', 'level'];
+ 'pos', 'info', 'level'];
for (var i = 0; i < propsToShow.length; i++) {
var prop = propsToShow[i];