diaspora/public/javascripts/app/pages/post-new.js
2012-03-27 14:51:40 -07:00

12 lines
287 B
JavaScript

app.pages.PostNew = app.views.Base.extend({
templateName : "post-new",
subviews : { "#new-post" : "postForm"},
initialize : function(){
console.log("In the page")
this.model = new app.models.Post()
this.postForm = new app.views.PostForm({model : this.model})
}
})