blob: 8d27c6c60531cbc4de8ab1876b1f2f5100e621b5 [file] [log] [blame]
/*
* Copyright (c) 2013 DataTorrent, Inc. ALL Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var _ = require('underscore');
var kt = require('knights-templar');
var BaseView = DT.lib.WidgetView;
/**
* <WIDGETNAME>
*
* <WIDGETDESCRIPTION>
*
*/
var <WIDGETNAME> = BaseView.extend({
initialize: function(options) {
BaseView.prototype.initialize.call(this, options);
// listeners, subviews, etc.
},
html: function() {
var html = '';
// generate markup here
return html;
},
assignments: {
// assign subviews here
},
template: kt.make(__dirname+'/<WIDGETNAME>.html','_')
});
exports = module.exports = <WIDGETNAME>;