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: '
', attributes: {class:'gjs-fonts gjs-f-b1'} },{ id: 'b2', label: '2 Blocks', content: '
', attributes: {class:'gjs-fonts gjs-f-b2'} },{ id: 'b3', label: '3 Blocks', content: '
', attributes: {class:'gjs-fonts gjs-f-b3'} },{ id: 'b4', label: '3/7 Block', content: '
', attributes: {class:'gjs-fonts gjs-f-b37'} },{ id: 'hero', label: 'Hero section', content: '
'+ '
'+ '
'+ '
Build your templates without coding
'+ '
Try it now
', attributes: {class:'gjs-fonts gjs-f-hero'} },{ id: 'h1p', label: 'Text section', content: '

Insert title here

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: '
'+ '
'+ '
'+ ''+ '
'+ '
Adam Smith
CEO
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore ipsum dolor sit
'+ '
'+ '
ftln
'+ '
'+ '
'+ '
'+ ''+ '
'+ '
John Black
Software Engineer
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore ipsum dolor sit
'+ '
'+ '
ftln
'+ '
'+ '
'+ '
'+ ''+ '
'+ '
Jessica White
Web Designer
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore ipsum dolor sit
'+ '
'+ '
ftln'+ '
'+ '
', attributes: {class:'gjs-fonts gjs-f-3ba'} },{ id: 'text', label: 'Text', attributes: {class:'gjs-fonts gjs-f-text'}, content: { type:'text', content:'Insert your text here', style: {padding: '10px' }, activeOnRender: 1 }, },{ id: 'image', label: 'Image', attributes: {class:'gjs-fonts gjs-f-image'}, content: { type:'image', activeOnRender: 1}, },{ id: 'quo', label: 'Quote', 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'} }, }], }, }; });