Skip to content

Commit 87dae53

Browse files
committed
Update README to refer to Propshaft support
1 parent ec8c5da commit 87dae53

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

README.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Rails Integration for TinyMCE
33

44
The `tinymce-rails` gem integrates the [TinyMCE](https://www.tiny.cloud/) editor with the Rails asset pipeline.
55

6-
This gem is compatible with Rails 5.0 and higher.
6+
This gem is compatible with Rails 5.1 and higher.
77

88
This is the branch for TinyMCE 5. Please see the [`main`](https://github.com/spohlenz/tinymce-rails) branch for TinyMCE 7, and alternate branches for [TinyMCE 6](https://github.com/spohlenz/tinymce-rails/tree/tinymce-6), [TinyMCE 4](https://github.com/spohlenz/tinymce-rails/tree/tinymce-4) & [TinyMCE 3.5.x](https://github.com/spohlenz/tinymce-rails/tree/tinymce-3).
99

@@ -58,7 +58,7 @@ See the [TinyMCE 5 Documentation](https://www.tiny.cloud/docs/configure/) for a
5858
5959
Use *one* of the following options to include TinyMCE assets.
6060
61-
(1) Add to your application.js:
61+
(1) Add to your application.js (Sprockets only):
6262
6363
```js
6464
//= require tinymce
@@ -73,10 +73,14 @@ or (2) with jQuery integration:
7373
(3) The TinyMCE assets can be included on a per-page basis using the `tinymce_assets` helper:
7474

7575
```erb
76-
<%= tinymce_assets %>
77-
#=> <script type="text/javascript" src="/assets/tinymce.js">
76+
<%= tinymce_assets data: { turbo_track: "reload" } %>
77+
#=> <script type="text/javascript" src="/assets/tinymce.js" data-turbo-track="reload">
7878
```
7979

80+
When using Propshaft, the `tinymce_assets` helper adds multiple script tags including the pre-init code (available via the `tinymce_preinit` helper), as well as `tinymce/tinymce.js` and `tinymce/rails.js`. You may prefer to selectively include these manually depending on your requirements.
81+
82+
For Sprockets, these are bundled together into one script tag.
83+
8084

8185
**4. Initialize TinyMCE**
8286

0 commit comments

Comments
 (0)