UNPKG

@titanium/turbo

Version:

🚀 Turbo is the awesome framework for turbo charging your Titanium cross-platform native mobile app development!

16 lines (14 loc) • 264 B
function openWindow(name) { var win = Alloy.createController(name).getView(); if (OS_ANDROID) { win.open(); } else { Alloy.Globals.navgroup.openWindow(win); } } function showInfo() { openWindow('info'); } function showMovies() { openWindow('movies'); }