SC.loadPackage({ 'IFrameElement': {
comment: 'I define an iframe element.',
traits: [ 'Element' ],
sharedProperties: {
protoHTML: { initValue: '
'
+'\t'
+'
' },
applicableWidgets: { initValue: [ 'WidgetBackgroundColor', 'WidgetBorderColor', 'WidgetBorder', 'WidgetBorderRadius', 'WidgetPadding', 'WidgetOpacity', 'WidgetIFrame' ] },
creationMenuItem: { initValue: '' }
},
properties: {
},
methods: {
init: {
comment: 'I initalize a new IFrameElement for the DOM node given to me as argument.',
code: function(aNode){
this.delegate('Element', 'init', aNode);
// Custom initialisation here
}
}
}
}});