Emil Cieslar

Results 12 comments of Emil Cieslar

@pankajparkar You have to override the ajax service. For example: `services/ajax.js` ```js import AjaxService from 'ember-ajax/services/ajax'; export default AjaxService.extend({ handleResponse() { return this._super(...arguments); }, }); ```

@nowrap Does it mean that your app was rejected from AppStore review due to the fact that plugin references non-public selectors?

I believe that if you serve your files using react-native-webview, you can set the custom headers, as well as cookies, from there: https://github.com/react-native-webview/react-native-webview/blob/master/docs/Guide.md#working-with-custom-headers-sessions-and-cookies

I noticed the same issue when I pushed a commit straight to the master branch without a PR. It updated the draft release that contained all the PRs that were...

@jetersen > thats the intended effect. Release drafter is only able to properly categorize pull requests thanks to labels I think we misunderstood each other. The problem is that it...

Looking at the Dynamic Type Sizes in [Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/typography/#:~:text=for%20other%20scripts.-,Dynamic%20Type%20Sizes,-Dynamic%20Type%20provides), it offers not only the default human size but also additional sizes depending on your needs (the xLarge, xxLarge, ...)....

It doesn't work just by setting `placeholder` under the options object for me @RahavLussato. I also had to require the plugin using `require('codemirror/addon/display/placeholder')`

@gabrielgrant That's actually not a silly question at all! In fact, that's a very good idea that solves the problem of different models for the same task. Thanks a lot...

@gabrielgrant I completely agree, having this functionality inside the model is not the first approach you'd take in many situations. But if it's, for example, just about debounced saving to...

This answer did the trick for me: https://stackoverflow.com/a/56972533/1167573