Slide 31
Slide 31 text
var widget = {
render : function(width, height, color) {
console.log('render...', 'width:', width,
'height:', height, 'color:', color);
}
}
var button = {
initialize: function(cb, label, width, height, color) {
console.log('init...', 'onclick:', cb, 'label:', label);
widget.render(width, height, color);
}
}
button.initialize(20, 30, alert, 'hello', 'blue');