Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
5d09a4fe
Commit
5d09a4fe
authored
Oct 07, 2016
by
Rafael Ostertag
Browse files
Fixed test whether or not tinyMCE is available.
parent
ff1d9658
Changes
1
Hide whitespace changes
Inline
Side-by-side
javascript/src/Helper/tinyMCE.js
View file @
5d09a4fe
...
...
@@ -27,7 +27,7 @@ QfqNS.Helper = QfqNS.Helper || {};
* @name QfqNS.Helper.jqxEditor
*/
var
tinyMce
=
function
()
{
if
(
!
tinymce
)
{
if
(
typeof
tinymce
===
'
undefined
'
)
{
return
;
}
...
...
@@ -68,7 +68,7 @@ QfqNS.Helper = QfqNS.Helper || {};
};
tinyMce
.
prepareSave
=
function
()
{
if
(
!
tinymce
)
{
if
(
typeof
tinymce
===
'
undefined
'
)
{
return
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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