@titanium/turbo
Version:
🚀 Turbo is the awesome framework for turbo charging your Titanium cross-platform native mobile app development!
12 lines (10 loc) • 298 B
JavaScript
const tabgroup = require('@/tabgroup');
function doClick (e) {
if (e.section === $.settingsSection) {
const title = e.row.name;
const window = Alloy.createController('/profile/emptyWindow', { title }).getView();
tabgroup.openWindow(window);
} else {
console.log('Logout pressed.');
}
}