Files
vanillajs-seed/app/about/about.js
2020-05-26 10:37:57 +02:00

18 lines
291 B
JavaScript

(function() {
// globals
MyApp.About = {};
// utility functions
// app functions
MyApp.About.renderAboutPage = function() {
$('.js-page-container').html(ejs.rr('/app/about/templates/about.ejs'));
};
// events
// app startup
page('/about', MyApp.About.renderAboutPage);
})();