Skip to content

Instantly share code, notes, and snippets.

View jkotchoff's full-sized avatar
💭
1's and 0's

Jason Kotchoff jkotchoff

💭
1's and 0's
View GitHub Profile
@rf
rf / example usage
Created November 5, 2013 20:58
PDF links on Android in Titanium
var wv = Ti.UI.createWebView();
var pdf = require('pdf');
wv.addEventListener('pdf', function (event) {
pdf(event.url, event.cookies, function (err) {
if (err) alert(err);
});
});