Garrick Cheung
Garrick Cheung
Ember is moving away from jQuery. Consider switching to use [non-jQuery version of Cropper](https://github.com/fengyuanchen/cropperjs);
Glimmer.js, a component-based library that powers components in Ember.js, is able to [output web components](https://glimmerjs.com/guides/using-glimmer-as-web-components).
Current email validation does not support international characters. Here's the RFC regarding international characters in email addresses: https://tools.ietf.org/html/rfc6530
Re-exporting vars like the following does not work: ``` javascript require: 'A'; exports A, B var B = function(){}; ``` But this works: ``` javascript exports A, B var A...
I forgot to add comment info about the file.
Look at: https://github.com/csuwldcat/mootools-htmlx/blob/master/Source/WebWorker/Thread.js#L46 Where's "self" being set?
By default, only files in `*/mirage/**/*` are excluded. While helpful, `tests/` and `test-support/`, found in in-repo-addons and in-repo-engines, are not excluded, which contributes to the amount of time it takes...
Below is a BDD description of the issue. * Given routes A and B * And route A has a `model` method that returns a promise from `store.findAll` method *...