Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Maarch
MaarchCourrier
Commits
e1db0bfe
Commit
e1db0bfe
authored
Jun 03, 2021
by
Florian Azizian
Browse files
FIX #17258 TIME 0:10 disable convert url in tinymce
parent
3bd582e6
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/frontend/app/administration/parameter/customization/parameters-customization.component.ts
View file @
e1db0bfe
...
...
@@ -110,6 +110,7 @@ export class ParametersCustomizationComponent implements OnInit, OnDestroy {
});
},
base_url
:
'
../node_modules/tinymce/
'
,
convert_urls
:
false
,
height
:
'
200
'
,
suffix
:
'
.min
'
,
language
:
this
.
translate
.
instant
(
'
lang.langISO
'
).
replace
(
'
-
'
,
'
_
'
),
...
...
src/frontend/app/administration/template/template-administration.component.ts
View file @
e1db0bfe
...
...
@@ -209,6 +209,7 @@ export class TemplateAdministrationComponent implements OnInit, OnDestroy {
tinymce
.
suffix
=
'
.min
'
;
tinymce
.
init
({
selector
:
selectorId
,
convert_urls
:
false
,
statusbar
:
false
,
language
:
this
.
translate
.
instant
(
'
lang.langISO
'
).
replace
(
'
-
'
,
'
_
'
),
language_url
:
`../node_modules/tinymce-i18n/langs/
${
this
.
translate
.
instant
(
'
lang.langISO
'
).
replace
(
'
-
'
,
'
_
'
)}
.js`
,
...
...
src/frontend/app/installer/customization/customization.component.ts
View file @
e1db0bfe
...
...
@@ -143,6 +143,7 @@ export class CustomizationComponent implements OnInit {
tinymce
.
init
({
selector
:
'
textarea
'
,
base_url
:
'
../node_modules/tinymce/
'
,
convert_urls
:
false
,
height
:
'
150
'
,
suffix
:
'
.min
'
,
language
:
this
.
translate
.
instant
(
'
lang.langISO
'
).
replace
(
'
-
'
,
'
_
'
),
...
...
src/frontend/app/profile/parameters/signatureMail/signature-mail.component.ts
View file @
e1db0bfe
...
...
@@ -40,6 +40,7 @@ export class MySignatureMailComponent implements OnInit {
tinymce
.
suffix
=
'
.min
'
;
tinymce
.
init
({
selector
:
'
textarea#emailSignature
'
,
convert_urls
:
false
,
statusbar
:
false
,
language
:
this
.
translate
.
instant
(
'
lang.langISO
'
).
replace
(
'
-
'
,
'
_
'
),
language_url
:
`../node_modules/tinymce-i18n/langs/
${
this
.
translate
.
instant
(
'
lang.langISO
'
).
replace
(
'
-
'
,
'
_
'
)}
.js`
,
...
...
src/frontend/plugins/mail-editor/mail-editor.component.ts
View file @
e1db0bfe
...
...
@@ -544,6 +544,7 @@ export class MailEditorComponent implements OnInit, OnDestroy {
},
selector
:
'
textarea#emailSignature
'
,
base_url
:
'
../node_modules/tinymce/
'
,
convert_urls
:
false
,
readonly
:
this
.
readonly
,
height
:
'
400
'
,
suffix
:
'
.min
'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment