Alex DiLiberto
Alex DiLiberto
@elwayman02 Seems like that should work but the timing is off. Here's a crude twiddle https://ember-twiddle.com/0faf8804c209997652670c88213d2e23?openFiles=components.auth-session-timeout.js%2C `/` route sets IDLE_TIMEOUT=1sec, `/login-flow` route sets `IDLE_TIMEOUT`=10sec, `/dashboard` route sets `IDLE_TIMEOUT`=5sec. If all...
I was playing around with this a little more tonight and I have a workaround, Anytime an app wants to set `IDLE_TIMEOUT` to some new value, they should then immediately...
Same here, since v4.0 on that line
Also seeing this if I use a class field which has a dasherized name; ```js export default class MyComponent { /* I am a prop */ 'my-prop': 123; } ```...
@cibernox See https://github.com/cibernox/ember-basic-dropdown/pull/619
@jbailey4's suggestion seems like the idiomatic approach to me
This was fixed in Bulma v0.4.1 https://github.com/jgthms/bulma/pull/619/files#diff-ce3c2ee7e05f002260f45062123ff5c9R123 ```scss select::-ms-expand { display: none; } ```
Just ran into this today as well except I was using a quoted class field which is a valid syntax; however, breaks ESDoc ```js export default class MyClass { /*...
I believe we'll need to add the [`passive`](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener) option when setting any event listeners which don't call `preventDefault`. This library currently uses jQuery and jQuery isn't planning to support `passive`...