1
0
Fork 0
fgdata/webgui/topics/Simulator/Exit.js

22 lines
458 B
JavaScript
Raw Normal View History

2015-01-25 12:02:20 +00:00
define([
'jquery', 'knockout', 'text!./Exit.html', 'fgcommand', 'kojqui/button'
], function(jquery, ko, htmlString, fgcommand ) {
function ViewModel(params) {
var self = this;
self.doExit = function() {
fgcommand.exit();
}
}
ViewModel.prototype.dispose = function() {
}
// Return component definition
return {
viewModel : ViewModel,
template : htmlString
};
});