framework7-without-localstorage
Version:
Full featured mobile HTML framework for building iOS & Android apps
16 lines (13 loc) • 322 B
JavaScript
// Initialize your app
var myApp = new Framework7({
animateNavBackIcon:true
});
// Export selectors engine
var $$ = Dom7;
// Add main View
var mainView = myApp.addView('.view-main', {
// Enable dynamic Navbar
dynamicNavbar: true,
// Enable Dom Cache so we can use all inline pages
domCache: true
});