Peter Banka

Results 8 comments of Peter Banka

I was able to work around this by creating `addon/components/our-modal-dialog.js` as ```js import ModalDialog from 'ember-modal-dialog/components/modal-dialog' export default ModalDialog.extend({ renderInPlace: false, }) ``` and changing all references to `modal-dialog` elsewhere...

Hey, Sam. Basically, I added this to `/cypress/support/commands.js` ``` let mirageFunctions = [] Cypress.on("window:before:load", (win) => { win.mirageFunctions = mirageFunctions win.runCypressMirageFunctions = function () { win.mirageFunctions.forEach((f) => f(win.server)) } })...

@fc-aotearoa Having recently attended a pact conference, I can tell you that what mirage provides in general and what ember-cli-pact provides in particular is far more powerful in general than...

I have confirmed that this is related to the retina display only. If I use (only) an external display on a Macbook pro, screenshots come out the same as they...

It's very convenient to be able to use `META-f` or `META-b` to go forward and backward a word at a time in the terminal. Also, `META-.` to retrieve the last...

Oh, wow, that's great, @elviskahoro , thank you! The last place I expected to find that was under the `File >` menu.

Related to: https://github.com/emberjs/ember.js/issues/15492