Phil Gengler
Phil Gengler
It seems like it is happening with the released 3.0.0-beta.0 as well (sorry, I've been working on upgrading an app so there are a lot of dependencies changing). It seems...
I did a little more digging and the problem seems to be here: https://github.com/yapplabs/ember-modal-dialog/blob/master/addon/components/tether-dialog.js#L19 (`attachment` is a dependent key of `attachmentClass` in `components/modal-dialog.js`). Including a value for `attachment` when using...
BTW, for anyone else having this problem, as a workaround I've created `app/components/modal-dialog.js` in my app with this content: ```javascript import ModalDialog from 'ember-modal-dialog/components/modal-dialog'; export default ModalDialog.extend({ attachment: 'middle center'...