1
0
Fork 0
fgdata/Phi/topics/Aircraft/Panel.js

17 lines
340 B
JavaScript
Raw Normal View History

2015-03-02 15:09:26 +00:00
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
};
});