admiraljs
Version:
Lightweight plug and play admin interface
16 lines (12 loc) • 383 B
JavaScript
define(['jquery', // lib/jquery/jquery
'underscore', // lib/underscore/underscore
'backbone','core/editor'],
function($, _, Backbone,EditorClass) {
//return a function to define "foo/title".
//It gets or sets the window title.
var View=EditorClass.extend({
template:'<input class="input" type="text" />'
})
return View;
}
);