Paul Arterburn

Results 7 comments of Paul Arterburn

Looks like this request might have been skipped? What if the app just remembered the screen you were on when you closed it? No setting needed - that was the...

@EtherTyper this exact issue log is linked under "Send feedback" in version 2.9.0. @dennisreimann perhaps you need to change the link?

@tomkra is there anyway to add the Pro icons locally and still use your awesome gem to call them? I'll purchase the Pro version to support the development, so I'd...

Using pseudo classes to accomplish nested lists prevents using Quill as a composer for anything that will be sent in email (as email clients do not allow the use of...

We ended up preventing ordered lists from indenting more than once and set the margin-left on unordered lists according the different indent-classes using a premailer stylesheet (https://rubygems.org/gems/premailer-rails).

Here's our code, if it's helpful: ```js var bindings = { "indent": { key: "tab", format: ["list"], handler: function(range, context) { if(context.format.list == "ordered") { return false; } else {...

I got around this by adding `config.assets.uglifier = { harmony: true }` above `config.assets.js_compressor = :uglifier_with_source_maps` in *production.rb*.