Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Allow filling in the only rich-text area without a locator | George Claghorn | 2019-05-19 | 1 | -7/+11 |
| | |||||
* | Prefer Capybara::Node::Element#execute_script | George Claghorn | 2019-05-19 | 1 | -4/+1 |
| | |||||
* | Add ActionDispatch::SystemTestCase#fill_in_rich_text_area | George Claghorn | 2019-05-13 | 2 | -0/+54 |
| | |||||
* | Start Rails 6.1 development | Rafael Mendonça França | 2019-04-24 | 1 | -2/+2 |
| | |||||
* | Adds a warning message for action text installer if application pack is missing. | Abhay Nikam | 2019-04-19 | 1 | -0/+13 |
| | |||||
* | Avoid creating ActionText::RichText records unnecessarily | George Claghorn | 2019-03-23 | 1 | -1/+1 |
| | | | | Assigning a has_one association for a persisted record saves the change immediately, so attempting to read a rich-text attribute on a persisted record without a corresponding ActionText::RichText would eagerly create one. Avoid assigning the rich text association to fix. | ||||
* | Fix updating rich text via nested attributes | George Claghorn | 2019-03-17 | 1 | -5/+2 |
| | | | Closes #35159. | ||||
* | Merge tag 'v6.0.0.beta3' | eileencodes | 2019-03-13 | 1 | -1/+1 |
|\ | | | | | | | v6.0.0.beta3 release | ||||
| * | Prep release | eileencodes | 2019-03-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | | * Update RAILS_VERSION * Bundle * rake update_versions * rake changelog:header | ||||
* | | Adds default trix partial | Chris Oliver | 2019-03-05 | 1 | -0/+4 |
|/ | |||||
* | Preparing for 6.0.0.beta2 release | Rafael Mendonça França | 2019-02-25 | 1 | -1/+1 |
| | |||||
* | Add line break to Action Text installation outputs | Vinicius Brasil | 2019-01-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | | The Action Text installations appends `require("trix")` to the application.js file. The problem is that there isn't a line break in the beginning of the installation output, leading to syntax errors, e.g.: ``` import './application.scss'require("trix") ``` This commit moves the line break from the end to the beginning of the output, fixing it to: ``` import './application.scss' require("trix") ``` | ||||
* | Preparing for 6.0.0.beta1 release | Rafael Mendonça França | 2019-01-18 | 1 | -1/+1 |
| | |||||
* | Tidy up action_text:install task | Javan Makhmali | 2019-01-17 | 1 | -9/+20 |
| | | | | Automate installing the appropriate packages with yarn and appending them to the default application.js pack. | ||||
* | Move all npm packages to @rails scope | Javan Makhmali | 2019-01-10 | 1 | -4/+3 |
| | | | | Fixes #33083 | ||||
* | Enable `Lint/DeprecatedClassMethods` cop to avoid using deprecated methods | yuuji.yaginuma | 2019-01-09 | 1 | -1/+1 |
| | |||||
* | Reset ActionText::Content.renderer before and after each request | George Claghorn | 2019-01-05 | 1 | -3/+6 |
| | |||||
* | Import Action Text | George Claghorn | 2019-01-04 | 24 | -0/+1075 |