1
0
Fork 0
fgdata/webgui/topics/Aircraft/Panel.js
2015-03-02 16:09:26 +01:00

16 lines
340 B
JavaScript

define([
'jquery', 'knockout', 'text!./Panel.html'
], function(jquery, ko, htmlString) {
function ViewModel(params) {
var self = this;
}
// ViewModel.prototype.dispose = function() {
// }
// Return component definition
return {
viewModel : ViewModel,
template : htmlString
};
});