Brian M Hunt

Results 59 issues of Brian M Hunt

Cool list. Here are a couple more that may be worth mentioning: [knockout-secure-binding](https://github.com/brianmhunt/knockout-secure-binding) -- custom binding provider that can be used with a Content Security Policy that prohibits unsafe eval...

It seems that in some circumstances function arguments use the global variable names. For example: ```ts // one file const r: number = 1 // another file function x (r:...

There is a potentially extraordinarily bad performance issue where the entire page will reload while scrolling. It is [discussed on stackexhange](http://stackoverflow.com/questions/12969228), and here is a workaround that fixes it for...

It would be quite awesome if modal headers could be (optionally) fixed-position when modals are overflow. When a user scrolls, the header would remain at the top. Similarly, fixed position...

Per the [complimentary comment](https://github.com/brianmhunt/casper-chai/commit/033c479557bccc75ac12a55e353c1995daf3c685#commitcomment-2279057) of @logicalparadox, being: > this is a really cool project. given this is a fork and I can't open issues i will post my issue(s) here....

This PR should exposes a function (`ko.onBindingError`) to hook into binding errors. This should give greater control to users handling cases such as #1626 The `function onBindingError(spec)` takes one object,...

severity: minor
type: feature
affected: average
api

This is a rewrite of the 139 commits to the #1360 branch. The result of applying that branch and applying this one to `master` shall be identical, but this branch...

When calling async functions (e.g. `inflate`), a new web-worker is created. This is problematic when calling it thousands of times, as it'll easily overload the browser with worker instantiations. When...

See: - https://github.com/knockout/knockout/issues/2589 - https://github.com/microsoft/TypeScript/issues/48150 ```ts // Broken function observable(value: T): Observable { return undefined as any; // the implementation is not important } // Fixed function observable(value: T extends...

types