@titanium/turbo
Version:
<p align="center"> <img src="https://cdn.secure-api.org/images/turbo-title_400.png" /><br> <a href="https://www.npmjs.com/package/@titanium/turbo"> <img src="https://img.shields.io/npm/v/@titanium/turbo.png" /> </a> </p>
16 lines (14 loc) • 337 B
JavaScript
function openDialog(e) {
if (OS_MOBILEWEB) {
alert('Mobileweb version not full implemented.\nSee TIMOB-13816 for details.');
} else {
Alloy.createController(e.source.title, {
message: 'Opened ' + e.source.title
}).openDialog($.index);
}
}
$.index.open();
// runtime unit tests
if (!ENV_PROD) {
require('specs/index')($);
}