define(function () { var blkStyle = '.blk-row::after{ content: ""; clear: both; display: block;} .blk-row{padding: 10px;}'; return { // Style prefix stylePrefix: 'gjs-', //TEMP components: '', // Enable/Disable possibility to copy(ctrl + c) & paste(ctrl + v) components copyPaste: true, // Enable/Disable undo manager undoManager: true, // Height for the editor container height: '900px', // Width for the editor container width: '100%', // The css that could only be seen (for instance, inside the code viewer) protectedCss: '*{box-sizing: border-box;}body{margin:0;height:100%}#wrapper{min-height:100%; overflow:auto}', // Default command defaultCommand: 'select-comp', // If true render a select of available devices showDevices: 1, // Dom element el: '', //Configurations for Asset Manager assetManager: {}, //Configurations for Canvas canvas: {}, //Configurations for Style Manager styleManager: {}, //Configurations for Layers layers: {}, //Configurations for Storage Manager storageManager: {}, //Configurations for Rich Text Editor rte: {}, //Configurations for DomComponents domComponents: {}, //Configurations for Modal Dialog modal: {}, //Configurations for Code Manager codeManager: {}, //Configurations for Panels panels: {}, //Configurations for Commands commands: {}, //Configurations for Css Composer cssComposer: {}, //Configurations for Selector Manager selectorManager: {}, //Configurations for Device Manager deviceManager: { 'devices': [{ name: 'Desktop', width: '', },{ name: 'Tablet', width: '992px', },{ name: 'Mobile landscape', width: '768px', },{ name: 'Mobile portrait', width: '480px', }], }, //Configurations for Block Manager blockManager: { 'blocks': [{ id: 'b1', label: '1 Block', content: '
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua
', attributes: {class:'gjs-fonts gjs-f-h1p'} },{ id: '3ba', label: 'Badges', content: '
'+
'
'+
'
'+
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore ipsum dolor sit', attributes: {class:'gjs-fonts gjs-f-quo'} },{ id: 'link', label: 'Link', attributes: {class:'fa fa-link'}, content: { type:'link', content:'Link', style:{color: '#d983a6'} }, },{ id: 'map', label: 'Map', attributes: {class:'fa fa-map-o'}, content: { type: 'map', style: {height: '350px'} }, },{ id: 'video', label: 'Video', attributes: {class:'fa fa-youtube-play'}, content: { type: 'video', style: {height: '350px'} }, }], }, }; });