grunt-doctrine
Version:
Grunt plugin to convert doctrine xml annotations into backbone models and collections. Useful in conjunction with doctrine apigility. Includes option to scaffold an entire BBB application
35 lines (22 loc) • 661 B
JavaScript
// Navigation
define(function(require, exports, module) {
"use strict";
var app = require("app");
var logger = require("lib/console");
var Layout = Backbone.View.extend({
/************ Backbone.LayoutManager *****************/
manage: true,
template: require("ldsh!../templates/navigation"),
el: false,
beforeRender: function() {
logger.debug('beforeRender');
},
afterRender: function() {
logger.debug('afterRender');
},
initialize: function() {
logger.debug('initialize');
}
});
module.exports = Layout;
});