mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-09 17:26:09 +01:00
Daniel Siepmann
7e2b48aab2
Do not use any inline style or javascript anymore. Instead js logic is moved to js file. Information are passed via data attributes. Some options are not respected anymore. That's why this change is breaking. Those options can be considered as obsolete anyway for current state of the art. Those options are: TSConfig: * options.feedit.popupWidth * options.feedit.popupHeight TypoScript: * stdWrap.editIcons.styleAttribute Resolves: #5
16 lines
939 B
HTML
16 lines
939 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<f:render partial="Form/Checkbox" arguments="{
|
|
label: 'LLL:EXT:feedit/Resources/Private/Language/locallang_edit.xlf:displayFieldIcons',
|
|
name: 'edit_displayFieldIcons',
|
|
value: display.fieldIcons }" debug="false"/>
|
|
<f:render partial="Form/Checkbox" arguments="{
|
|
label: 'LLL:EXT:feedit/Resources/Private/Language/locallang_edit.xlf:displayIcons',
|
|
name: 'edit_displayIcons',
|
|
value: display.displayIcons }" debug="false"/>
|
|
<f:format.raw>{toolbar}</f:format.raw>
|
|
<div class="typo3-adminPanel-form-group">
|
|
<a class="typo3-adminPanel-btn typo3-adminPanel-btn-default typo3-feedit-btn-openBackend" href="#" data-t3BeSitenameMd5="{script.t3BeSitenameMd5}" data-backendScript="{script.backendScript}">
|
|
<f:translate key="LLL:EXT:feedit/Resources/Private/Language/locallang_edit.xlf:openAB"/>
|
|
</a>
|
|
</div>
|
|
</html>
|