@cocreate/industry
Advanced tools
Comparing version 1.0.22 to 1.0.23
@@ -0,1 +1,8 @@ | ||
## [1.0.23](https://github.com/CoCreate-app/CoCreate-industry/compare/v1.0.22...v1.0.23) (2021-07-22) | ||
### Bug Fixes | ||
* createIndustryNew renamed to createIndustry ([d595942](https://github.com/CoCreate-app/CoCreate-industry/commit/d595942b975d576f581cb4a0ff115a2536799c99)) | ||
## [1.0.22](https://github.com/CoCreate-app/CoCreate-industry/compare/v1.0.21...v1.0.22) (2021-07-17) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@cocreate/industry", | ||
"version": "1.0.22", | ||
"version": "1.0.23", | ||
"description": "An Exhaustive business app template based on vanilla javascript similar to a website template featuring websites, specialty crm, email templates for creating complex business workspace/shell. Easily configured using HTML5 data-attributes and/or JavaScript API.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -22,3 +22,3 @@ import crud from '@cocreate/crud-client'; | ||
crud.socket.listen('createIndustryNew', function(data) { | ||
crud.socket.listen('createIndustry', function(data) { | ||
console.log(data) | ||
@@ -81,7 +81,7 @@ document.dispatchEvent(new CustomEvent('createIndustry', { | ||
if (data['adminUI_id']) | ||
localStorage.setItem('adminUI_id', data['adminUI_id']); | ||
// if (data['adminUI_id']) | ||
// localStorage.setItem('adminUI_id', data['adminUI_id']); | ||
if (data['builderUI_id']) | ||
localStorage.setItem('builderUI_id', data['builderUI_id']); | ||
// if (data['builderUI_id']) | ||
// localStorage.setItem('builderUI_id', data['builderUI_id']); | ||
@@ -88,0 +88,0 @@ // document.dispatchEvent(new CustomEvent('runIndustry'), { |
40699