Ryan Panning

Results 10 issues of Ryan Panning

Using the [ember `assign()` polyfill is depreciated as of v4](https://deprecations.emberjs.com/v4.x#toc_ember-polyfills-deprecate-assign). Test scenarios [started spewing this depreciation message](https://github.com/froala/ember-froala-editor/runs/4474989161?check_suite_focus=true#step:7:580), so `ember-cli-deprecation-workflow` was used to silence the message (from failing test scenarios). The...

[Ember Embroider](https://github.com/embroider-build/embroider) will be the new addon package format. It would be great to get this into 3.0, however, it's still somewhat experimental so I need to do some more...

The `` component largely depends on interaction with the attached `element` to initialize the Froala Editor. Technically ember now allows this access by using a [modifier](https://guides.emberjs.com/release/components/template-lifecycle-dom-and-modifiers/#toc_abstracting-the-logic-into-a-custom-modifier). Most of the ``...

https://ember-learn.github.io/ember-cli-addon-docs/

Apparently there is a types file that can be added to help with TypeScript support. Probably worth adding since the ember community is moving that direction. https://github.com/typed-ember/ember-cli-typescript/issues/48

The theme does not abide by the Moodle configuration option "Autofocus login page form" under Site Admin > Plugins > Authentication > Manage authentication. (Yeah, odd place for that option.)...

https://github.com/github/renaming#renaming-existing-branches

In my app I have a query param at the `application` level. Most of the time it'll never make it's way into the URL because the default value is not...

With ember `{{link-to}}`, the route path can be omitted when used in conjunction with query params. ``` {{#link-to (query-params foo="bar")}}Baz{{/link-to}} {{link-to "Baz" (query-params foo="bar")}} ``` I do this all the...

bug

Currently the `assertAbove()` function is [incorrectly documented as a way to check for a minimum version](https://github.com/ember-cli/ember-cli-version-checker/blob/v5.1.2/README.md#assertabove) and is actually a [footgun if used in this way](https://github.com/ember-cli/ember-cli-version-checker/issues/16). (Ask me how I...