MaximusBaton
MaximusBaton
I faced the same problem in here is my solution: ``` ```
This is because of the ripple. Actually you've got a non 100% width beacuse of the margins which are calculated for the ripple to have a place. I've got the...
Great library! But really sad to know that it's not working with realm....
The problem is that `_mobile = /ipad|iphone|ipod|android|blackberry|windows phone|opera mini|silk/i.test(navigator.userAgent);` returns false for blackberry and the library thinks it not a mobile device.
@bdurand , you're absolutely right! thanks! here's my solution: ``` var BaseImageFormat = Quill.import('formats/image'); const ImageFormatAttributesList = [ 'alt', 'height', 'width', 'style' ]; class ImageFormat extends BaseImageFormat { static formats(domNode)...