diff --git a/libs/jsonTree/jsonTree.js b/libs/jsonTree/jsonTree.js index 51bbf01..7b32133 100644 --- a/libs/jsonTree/jsonTree.js +++ b/libs/jsonTree/jsonTree.js @@ -438,6 +438,8 @@ var jsonTree = (function() { throw new Error('This is abstract class'); } + var showMoreSymbol = (Array.isArray(val)) ? "Array( " + val.length + " )" : "Object"; // … + var self = this, el = document.createElement('li'), template = function(label, sym) { @@ -446,7 +448,7 @@ var jsonTree = (function() {