admiraljs
Version:
Lightweight plug and play admin interface
17 lines (13 loc) • 365 B
JavaScript
define(['jquery', // lib/jquery/jquery
'underscore', // lib/underscore/underscore
'backbone','bootstrap'],
function($, _, Backbone,template) {
//return a function to define "foo/title".
//It gets or sets the window title.
var View=Backbone.View.extend({
initialize:function() {
}
})
return View;
}
);