json-object-editor 0.10.436 → 0.10.437

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,7 @@
1
1
  ## CHANGELOG
2
2
 
3
3
  ### 0.10.400
4
+ 437 - tagsList optimized using cache
4
5
  436 - tags listRender
5
6
  435 - and add user-select property to capp-menu-label
6
7
  433 - dynamic sites update
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-object-editor",
3
- "version": "0.10.436",
3
+ "version": "0.10.437",
4
4
  "description": "JOE the Json Object Editor | Platform Edition",
5
5
  "main": "app.js",
6
6
  "scripts": {
@@ -90,7 +90,7 @@ var tag ={
90
90
  }
91
91
  html += `<joe-tags class="${specs.cssclass||''}">`;
92
92
  tags.map(function(tag){
93
- let tagObj = $J.get(tag);
93
+ let tagObj = _joe.Cache.get(tag);//$J.get(tag);
94
94
  if(tagObj){
95
95
  html+= `<joe-tag data-id="${tagObj._id}" title="${tagObj.info}" style="${tagObj.color && (`background:'${tagObj.color}'`)}">${tagObj.name}</joe-tag>`;
96
96
  }