Browse Source

Move devices defaults

pull/3725/head
Artur Arseniev 5 years ago
parent
commit
4bff50934b
  1. 26
      src/device_manager/config/config.js
  2. 28
      src/editor/config/config.js

26
src/device_manager/config/config.js

@ -1,3 +1,27 @@
export default {
devices: []
devices: [
{
id: 'desktop',
name: 'Desktop',
width: ''
},
{
id: 'tablet',
name: 'Tablet',
width: '768px',
widthMedia: '992px'
},
{
id: 'mobileLandscape',
name: 'Mobile landscape',
width: '568px',
widthMedia: '768px'
},
{
id: 'mobilePortrait',
name: 'Mobile portrait',
width: '320px',
widthMedia: '480px'
}
]
};

28
src/editor/config/config.js

@ -212,33 +212,7 @@ export default {
selectorManager: {},
//Configurations for Device Manager
deviceManager: {
devices: [
{
id: 'desktop',
name: 'Desktop',
width: ''
},
{
id: 'tablet',
name: 'Tablet',
width: '768px',
widthMedia: '992px'
},
{
id: 'mobileLandscape',
name: 'Mobile landscape',
width: '568px',
widthMedia: '768px'
},
{
id: 'mobilePortrait',
name: 'Mobile portrait',
width: '320px',
widthMedia: '480px'
}
]
},
deviceManager: {},
//Configurations for Style Manager
styleManager: {

Loading…
Cancel
Save