Code: Select all
Principal = Core.extend(Echo.Application, {
_messaje: null,
$contruct: function() {
Echo.Application.call(this);
this._messaje = "a window";
var button = new Echo.Button({ text: "init"});
button. <---- DOES NOT WORK
}
});