summaryrefslogtreecommitdiff
path: root/js/lib/html.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/html.js
parenteb6a4c5c5387dde76b9c9cef8260b5b70835e2cf (diff)
Made `tight` a property of `list_data`.
Diffstat (limited to 'js/lib/html.js')
-rw-r--r--js/lib/html.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lib/html.js b/js/lib/html.js
index 045ab54..3c1ed4c 100644
--- a/js/lib/html.js
+++ b/js/lib/html.js
@@ -118,7 +118,7 @@ var renderNodes = function(block) {
grandparent = node.parent.parent;
if (grandparent !== null &&
grandparent.t === 'List') {
- if (grandparent.tight) {
+ if (grandparent.list_data.tight) {
break;
}
}