Skip to content

Instantly share code, notes, and snippets.

@chancez
Created February 14, 2014 01:16
Show Gist options
  • Save chancez/8993268 to your computer and use it in GitHub Desktop.
Save chancez/8993268 to your computer and use it in GitHub Desktop.
function fullScreenImage(e) {
Ti.API.info('[fullScreenImage] event: ' + JSON.stringify(e));
var win = Ti.UI.createWindow({
name: 'imageWindow'
});
var image = Ti.UI.createImageView({
image: e.image,
});
win.add(image);
win.open();
// win.open({fullscreen: true, navBarHidden: true});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment