Chad Schroeder
Chad Schroeder
When I use Webpack to import the Sass from this project in my app I get deprecation warnings like: ``` DEPRECATION WARNING: Using / for division is deprecated and will...
### Steps to reproduce It's easy to make a mistake in a migration and accidentally use an option that ends up being ignored. Some options are supported by one command...
Fixes #1103. When [pasting plain text content](https://github.com/basecamp/trix/blob/v2.0.7/src/trix/controllers/level_2_input_controller.js#L48) or a [URL](https://github.com/basecamp/trix/blob/v2.0.7/src/trix/controllers/level_2_input_controller.js#L60), if you modify the content in a `trix-change` or `trix-paste` callback, the changes aren't reflected in the editor after the...
Say I create a paste handler that is going to change the incoming text like: ```javascript elem = document.querySelector('trix-editor') elem.addEventListener('trix-paste', function() { length = elem.editor.getDocument().toString().length elem.editor.setSelectedRange([0, length]) elem.editor.activateAttribute('bold') }) ```...
1. Select text. 2. Click the link icon and apply a link. 3. Click the undo button. This leaves behind a `span` with `background-color: highlight;`. If you have a background...
Fixes #1088 by restoring the missing `fileInputId` property. Also adds an `acceptedFileTypes` property, similar to what was proposed in https://github.com/basecamp/trix/pull/789. That PR was opened over 3 years ago back when...
While overriding the `pickFiles` function, I noticed that there is no `fileInputId` property to provide a unique ID for the dynamically inserted file input element. Back in Trix version 1,...
**Steps for Reproduction** 1. Copy HTML from a page that includes this: ```html one two three ``` 2. Paste it into the [Quill Playground](https://quilljs.com/playground/). **Expected behavior**: The editor should show:...