Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
25447b34
Commit
25447b34
authored
Nov 28, 2019
by
Carsten Rose
Browse files
Merge branch 'master' into B8091CheckBoxRequired
parents
4ce1908a
08437f5e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Documentation/License.rst
View file @
25447b34
...
...
@@ -39,4 +39,5 @@ Software distributed together with QFQ
* TinyMCE - https://github.com/tinymce/tinymce
* Twig - https://twig.symfony.com
* Twitter typeahead JS - https://twitter.github.io/typeahead.js/
* bootstrap-validator.js - https://github.com/1000hz/bootstrap-validator
* Event Emitter - https://git.io/ee
\ No newline at end of file
extension/Classes/Core/Helper/HelperFormElement.php
View file @
25447b34
...
...
@@ -382,7 +382,7 @@ class HelperFormElement {
// INFO: $showinline =- TRUE ('input' elemente)
if
(
isset
(
$formElement
[
FE_INPUT_EXTRA_BUTTON_INFO
])
&&
$showInline
)
{
$extraButton
.
=
<<<EOF
<button class="btn btn-info" onclick="$('#$id-extra-info').slideToggle('swing')">
<button
type="button"
class="btn btn-info" onclick="$('#$id-extra-info').slideToggle('swing')">
$infoSymbolInside
</button>
EOF;
...
...
@@ -446,7 +446,8 @@ EOF;
EOF;
}
$formElement
[
FE_TMP_EXTRA_BUTTON_HTML
]
=
Support
::
wrapTag
(
'<div class="input-group-btn" style="font-size: 1em;">'
,
$extraButton
,
true
);
// $formElement[FE_TMP_EXTRA_BUTTON_HTML] = Support::wrapTag('<div class="input-group-btn" style="font-size: 1em;">', $extraButton, true);
$formElement
[
FE_TMP_EXTRA_BUTTON_HTML
]
=
Support
::
wrapTag
(
'<div class="input-group-btn">'
,
$extraButton
,
true
);
Support
::
setIfNotSet
(
$formElement
,
FE_INPUT_EXTRA_BUTTON_INFO
);
return
$formElement
;
...
...
Write
Preview
Markdown
is supported
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