ember-arcgis-page-layout
Version:
Page Layout infrastructure components
16 lines (15 loc) • 378 B
JavaScript
export default function getDefaultSection(textColor) {
return {
containment:'fixed',
isFooter:false,
// TODO: remove default colors once colorpicker no longer requires them
style: {
background: {
color: 'transparent'
},
color: textColor || '#000000'
},
// need an array of empty rows to show a drop target
rows: []
};
}