Ken Hadden

Results 19 comments of Ken Hadden

This is the exact reason I'm reading through these issues. I have a complex form built using knockout js. I was using jquery numeric applied using a custom binding. On...

I second this one too.

+1 for sticking with knockout. I've been using if for something like 8 years. And in that time I've messed with Aurelia and Angular and glanced at React/Vue. All new...

FYI, this is my current config in aurelia.json: ``` { "name": "jquery.inputmask", "main": "index", "path": "../node_modules/jquery.inputmask", "deps": [ "jquery" ], "exports": "$" } ``` And when I save my custom...

> I get still get the following errors when I run au run --watch, then subsequently save the file: I just wanted to bump this as I am still seeing...

I've been looking at the files in the dist and dist/inputmask folders. It looks like the jquery.inputmask.bundle.js is not an AMD module. But files in dist/inputmask are AMD. What I'm...

I must be doing something wrong because I just keep getting the same errors. Here's my current config for jquery, moment (which works fine) and inputmask: ``` "jquery", { "name":...

I'm wondering the same thing. I'd like to use webpack import() to lazy load chunks of my application. So that when a user hits a top-level route (this is a...