var BlueprintNotice = View.extend(ToggleableView.prototype).extend({ el: "#blueprintNotice", initialize: function(opt){ this.parent = opt.parent this.$notice = this.$(".notice") }, notice: function(msg){ this.$notice.html(msg) }, showCreateProjectNotice: function(){ this.notice("Start a new project with this blueprint.") this.show() }, })