c97d3fdc62
use jqueryui popup instead of the native to allow theming
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
define([
|
|
'knockout', 'text!./radiostack.html', 'kojqui/tooltip'
|
|
], function(ko, htmlString) {
|
|
|
|
function DualFrequencyViewModel(label, pfx) {
|
|
var self = this;
|
|
self.useKey = pfx + "use";
|
|
self.sbyKey = pfx + "sby";
|
|
self.stnKey = pfx + "stn";
|
|
|
|
self.label = ko.observable(label);
|
|
self.use = ko.observable(188.888).extend({
|
|
fgprop : self.useKey
|
|
});
|
|
|
|
self.stby = ko.observable(188.888).extend({
|
|
fgprop : self.sbyKey
|
|
});
|
|
|
|
self.stn = ko.observable("").extend({
|
|
fgprop : self.stnKey
|
|
});
|
|
|
|
self.swap = function() {
|
|
ko.utils.knockprops.write(self.useKey, this.stby());
|
|
ko.utils.knockprops.write(self.sbyKey, this.use());
|
|
};
|
|
}
|
|
|
|
function ViewModel(params) {
|
|
this.radios = ko.observableArray([
|
|
new DualFrequencyViewModel("COM1", "com1"), new DualFrequencyViewModel("COM2", "com2"),
|
|
new DualFrequencyViewModel("NAV1", "nav1"), new DualFrequencyViewModel("NAV2", "nav2"),
|
|
new DualFrequencyViewModel("ADF", "adf1"),
|
|
]);
|
|
|
|
}
|
|
|
|
// Return component definition
|
|
return {
|
|
viewModel : ViewModel,
|
|
template : htmlString
|
|
};
|
|
});
|