Browse Source

Set storeComponents and storeStyles enabled by default

pull/281/head
Artur Arseniev 9 years ago
parent
commit
ea92a11d9f
  1. 4
      dist/grapes.min.js
  2. 2
      package.json
  3. 10
      src/storage_manager/config/config.js

4
dist/grapes.min.js

File diff suppressed because one or more lines are too long

2
package.json

@ -1,7 +1,7 @@
{
"name": "grapesjs",
"description": "Free and Open Source Web Builder Framework",
"version": "0.9.34",
"version": "0.9.35",
"author": "Artur Arseniev",
"license": "BSD-3-Clause",
"homepage": "http://grapesjs.com",

10
src/storage_manager/config/config.js

@ -16,20 +16,20 @@ module.exports = {
stepsBeforeSave: 1,
//Enable/Disable components model (JSON format)
storeComponents: false,
storeComponents: 1,
//Enable/Disable styles model (JSON format)
storeStyles: false,
storeStyles: 1,
//Enable/Disable saving HTML template
storeHtml: true,
storeHtml: 1,
//Enable/Disable saving HTML template
storeCss: true,
storeCss: 1,
// ONLY FOR LOCAL STORAGE
// If enabled, checks if browser supports Local Storage
checkLocal: true,
checkLocal: 1,
// ONLY FOR REMOTE STORAGE
// Custom params that should be passed with each store/load request

Loading…
Cancel
Save