156691bf87
Handling unsupported buttons by add the text "not implemented yet".
14 lines
No EOL
287 B
JavaScript
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
|
|
};
|
|
}); |