7 lines
No EOL
225 B
JavaScript
7 lines
No EOL
225 B
JavaScript
app.views.ProfileInfo = app.views.Base.extend({
|
|
templateName : "profile-info",
|
|
|
|
initialize : function(){
|
|
this.model.bind("change", this.render, this) //this should go on profile info view when it gets Extracted
|
|
}
|
|
}) |