const mainView = app.views.create('.view-main', {
// enable master detail
masterDetailBreakpoint: 800,
routes: [
{
path: '/',
url: './pages/master.html',
// specify home route as master route
master: true,
// detail routes
detailRoutes: [
{
path: '/detail/:id/',
url: './pages/detail.html',
},
]
},
]
});
if ( (a >= 30) || (b <= 35) ) {print();}
if ( (a <= 10) || (b >= 15) ) {print();}
if ( (a <= 30) || (b >= 35) ) {print();}
А так?