1
0
Fork 0
fgdata/Phi/topics/Tools/WindCalculator.js
Roman Ludwicki 156691bf87 Add content to the Help page for Phi
Handling unsupported buttons by add the text "not implemented yet".
2022-11-10 14:36:24 +01:00

14 lines
No EOL
287 B
JavaScript

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