1
0
Fork 0
fgdata/webgui/topics/Aircraft/Select.js
Torsten Dreyer 32d99af20a Phi: first incomplete aircraft selection/install
requires latest flightgear source patch introducing /pkg/ uri handler
2015-02-17 12:11:35 +01:00

39 lines
1,006 B
JavaScript

define([
'jquery', 'knockout', 'text!./Select.html', 'fgcommand', 'kojqui/button'
], function(jquery, ko, htmlString,fgcommand) {
function ViewModel(params) {
var self = this;
self.catalogs = ko.observableArray([]);
self.install = function(pack) {
console.log("install", pack);
// jquery.get('/pkg/install/'+pack.id);
fgcommand.switchAircraft(pack.id);
}
self.uninstall = function(pack) {
console.log("uninstall", pack);
}
self.select = function(pack) {
console.log("select", pack );
}
jquery.get('/pkg/catalogs', null, function(data) {
if( data.catalogs )
self.catalogs(data.catalogs);
});
}
// ViewModel.prototype.dispose = function() {
// }
// Return component definition
return {
viewModel : ViewModel,
template : htmlString
};
});