1
0
Fork 0
fgdata/Phi/topics/Tools/VerticalNavigation.js

14 lines
291 B
JavaScript
Raw Normal View History

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