Dan Wenzel
Dan Wenzel
JS convention seems to have moved toward using the method name `includes` instead of `contains`. For enumerables, [Ember is deprecating `contains`](https://www.emberjs.com/deprecations/v2.x/#toc_enumerable-contains), and [`includes` is pretty much the only available method...
With the current functionality, you can interact with `ember-collection`'s scroll event. But this requires you to completely override the default `scroll-change` action. The docs show the following example as a...
Reproduction here: https://github.com/danwenzel/embroider-issues/tree/css-modules I've got the beta embroider version of ember-css-modules installed (1.3.0-beta.1). When turning on the `staticComponents: true` embroider option, ember-css-modules cannot seem to find the `styles.css` file within...
We're using the native fetch here: https://github.com/adopted-ember-addons/ember-cli-ifa/blob/e0c38a0a4c3f70671a69c265df3e8a2e08e9726b/addon/initializers/asset-map.js#L24 This throws an error in Internet Explorer, since it doesn't support native fetch. Should we switch to using `ember-fetch`?
When viewing the visualization, I'm noticing that the application css is completely missing - there's no area for it at all. The app js, vendor js, and vendor css are...
This add-on does more than what is described in the current README. This adds that info, including the warning suggested here: https://github.com/intercom/ember-href-to/issues/57 Happy to discuss better ways to organize the...
Incorrect positioning when inside a Web Component slot, with a container that has a backdrop-filter
**Describe the bug** When a tooltip is rendered within the slot of a web component, within a container that has a `backdrop-filter`, the tooltip ends up being positioned incorrectly. I've...