Aaron Mulder

Results 12 comments of Aaron Mulder

I too wish that `finally` could take an async function. I put the MySQL pool (from, ahem, jeremydaly/serverless-mysql) into a request field, and `finally` gets passed the request object, so...

I tried installing ```@next``` as you suggest (it gave me version ```"^1.2.0-1"```) and I still get the problem. On further inspection, it seems to be caused by this (in the...

According to `node_modules/webpack/package.json` I'm already on Webpack 2.2.0 I don't think Webpack has solved the general issue, which appears to be that whenever it sees "require" it tries to analyze...

Hmm... seems to be, not a mistake, but perhaps some code that can lead to a problem in the Vuforia demo (TypeScript). Here's the issue: ``` app.vuforia.isAvailable().then(function(available) { // vuforia...

Yes, I have code like, er, this (copied from the example but with some `this.` prefixes added): ``` this.app.vuforia.isAvailable().then(function(available) { // vuforia not available on this platform if (!available) {...

Well, maybe I'm confused by where the error is originating. If "this.app" was undefined, I would have expected an error more like "property vuforia doesn't exist on 'undefined' when calling...

Just checking in again... :)

I'm seeing the same issue with a checkbox with a custom appearance (circular and etc.). When I flatten the form all the checkboxes appear unchecked. If I manually call `updateAppearance`...

I think the problem is in `PDFForm.ts#findWidgetAppearanceRef` where it only handles checkboxes and radio buttons if the normal appearance is a dictionary instead of a reference... in my file I...