12 lines
No EOL
222 B
JavaScript
12 lines
No EOL
222 B
JavaScript
app.views.PostForm = app.views.Base.extend({
|
|
templateName : "post-form",
|
|
|
|
initialize : function(){
|
|
console.log("In the form")
|
|
},
|
|
|
|
postRenderTemplate: function(){
|
|
console.log("I'm getting rendered")
|
|
}
|
|
|
|
}); |