@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>
20 lines (17 loc) • 477 B
JavaScript
function openPopover() {
if (Ti.Platform.osname === 'ipad') {
var popover = Alloy.createController('popover').getView();
popover.show({view:$.button1});
} else {
alert('Popover only supported on iPad');
}
}
function openPopoverWithContentView() {
if (Ti.Platform.osname === 'ipad') {
var popover = Alloy.createController('popover_with_window').getView();
popover.show({view:$.button2});
} else {
alert('Popover only supported on iPad');
}
}
$.index.open();