We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f46c6bb commit fff67daCopy full SHA for fff67da
2 files changed
index.html
@@ -113,6 +113,11 @@
113
<label for='disableNesting'>
114
Avoid nesting instances within instances
115
</span>
116
+ <span style="white-space: nowrap;">
117
+ <input id='verticalLists' type='checkbox'>
118
+ <label for='verticalLists'>
119
+ Display linked lists vertically
120
+ </span>
121
</span> <!-- #options -->
122
</td>
123
</tr></table>
jv-frontend.js
@@ -560,3 +560,9 @@ var setOptions = function(lookup_function) {
560
}
561
};
562
563
+var oldSE = structurallyEquivalent;
564
+var structurallyEquivalent = function(obj1, obj2) {
565
+ if ($('#verticalLists').is(':checked')) return false;
566
+ return oldSE(obj1, obj2);
567
+}
568
+
0 commit comments