simple_form_extension 1.1.6 → 1.1.7
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ce72e21a1dc4968eb7127f09c08faab0a8d2e8c
|
4
|
+
data.tar.gz: c9da9be3e9092ab7a8b683a049e945ffbfe7f2d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa5cd5fa0baf7b5a4d8e6d1bd125133afe12cbb9260bd3222cae2259b0e7706b53b537312615db6fd96649d06176076b7fba59029568489f929ca874fd0c69bc
|
7
|
+
data.tar.gz: 097ddc7eb8a903467dd395671f41cff7d9a13247dffb508abfde24780e21cbe9c43b75668ea74ed9a2497de52e86f0e03cf93d37934c7077b65b809a21e533a2
|
@@ -12,18 +12,27 @@ onPageReady ->
|
|
12
12
|
$textArea.redactor
|
13
13
|
buttons: ['html', 'formatting', 'bold', 'italic', 'underline', 'deleted',
|
14
14
|
'unorderedlist', 'orderedlist', 'outdent', 'indent',
|
15
|
-
'image', '
|
15
|
+
'image', 'file','link', 'alignment', 'horizontalrule']
|
16
|
+
removeEmpty: ['strong', 'em', 'span', 'p', 'h1', 'h2', 'h3', 'h4', 'div']
|
16
17
|
minHeight: 400
|
18
|
+
buttonSource: true
|
19
|
+
replaceDivs: false
|
20
|
+
linebreaks: true
|
21
|
+
toolbarFixed: false
|
17
22
|
imageUpload: ["/redactor_rails/pictures", params].join('?')
|
18
|
-
|
23
|
+
imageManagerJson: "/redactor_rails/pictures"
|
19
24
|
fileUpload: ["/redactor_rails/documents", params].join('?')
|
20
|
-
|
25
|
+
fileManagerJson: "/redactor_rails/documents"
|
21
26
|
plugins: [
|
27
|
+
"clips"
|
28
|
+
"filemanager"
|
29
|
+
"imagemanager"
|
30
|
+
"video"
|
31
|
+
"table"
|
22
32
|
"fontcolor"
|
23
33
|
"fontsize"
|
24
34
|
]
|
25
35
|
path: "/assets/redactor-rails"
|
26
|
-
css: "style.css"
|
27
36
|
lang: "fr"
|
28
37
|
$textArea.data('initialized.redactor', true)
|
29
38
|
|