1
0
Fork 0
fgdata/webgui/topics/Simulator/Reset.js
2015-02-04 21:05:55 +01:00

21 lines
427 B
JavaScript

define([
'jquery', 'knockout', 'text!./Reset.html', 'kojqui/button'
], function(jquery, ko, htmlString) {
function ViewModel(params) {
var self = this;
self.doReset = function() {
console.log("reset");
}
}
ViewModel.prototype.dispose = function() {
}
// Return component definition
return {
viewModel : ViewModel,
template : htmlString
};
});