lexxy 0.1.19.beta → 0.1.21.beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/app/assets/javascript/lexxy.js +674 -117
- data/app/assets/javascript/lexxy.js.br +0 -0
- data/app/assets/javascript/lexxy.js.gz +0 -0
- data/app/assets/javascript/lexxy.min.js +2 -2
- data/app/assets/javascript/lexxy.min.js.br +0 -0
- data/app/assets/javascript/lexxy.min.js.gz +0 -0
- data/app/assets/stylesheets/lexxy-content.css +19 -3
- data/app/assets/stylesheets/lexxy-editor.css +103 -7
- data/app/assets/stylesheets/lexxy-variables.css +20 -0
- data/config/ci.rb +13 -0
- data/lib/lexxy/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e18ecdc387fc935f46cb36e319ff8b261d4052aedc1a01e0b7bcffb686665902
|
|
4
|
+
data.tar.gz: 705671c88fb64c23eefa000de38220165af061e36c4b4ee788c1da2fea0c7f67
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fb4dead37c6f5b6cc34ce035409e2084498a1feeeb41683cd6f6196116b2a7b666786a3cf65d1095f4508d2c8802dd2503fe4138d9c5ec85a34772c9c0cbcec
|
|
7
|
+
data.tar.gz: cc61fac37cf5b83469b36496fe2b1347097d54831c13993dddc5f133fb4ca3eaf9267dae5880a860274691689fd1361eab017eab741e73bc9fc9e40bc3b0a2e9
|
data/README.md
CHANGED
|
@@ -23,7 +23,7 @@ A modern rich text editor for Rails.
|
|
|
23
23
|
Add this line to your application's Gemfile:
|
|
24
24
|
|
|
25
25
|
```ruby
|
|
26
|
-
gem 'lexxy', '~> 0.1.
|
|
26
|
+
gem 'lexxy', '~> 0.1.20.beta' # Need to specify the version since it's a pre-release
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
And then execute:
|
|
@@ -355,6 +355,11 @@ Each event is dispatched on the `<lexxy-editor>` element.
|
|
|
355
355
|
Fired when the `<lexxy-editor>` element is attached to the DOM and ready for use.
|
|
356
356
|
This is useful for one-time setup.
|
|
357
357
|
|
|
358
|
+
### lexxy:focus and lexxy:blur
|
|
359
|
+
|
|
360
|
+
Fired whenever the editor element gains or loses focus.
|
|
361
|
+
Useful to show or hide accessory UI state.
|
|
362
|
+
|
|
358
363
|
### `lexxy:change`
|
|
359
364
|
|
|
360
365
|
Fired whenever the editor content changes.
|