Merge branch 'hotfix/php-7.3-compat'
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"
|
<html data-namespace-typo3-fluid="true" lang="en"
|
||||||
xmlns:f="http://typo3.org/ns/fluid/ViewHelpers"
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers"
|
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers"
|
||||||
xmlns:ep="http://typo3.org/ns/EP/EpEvents/ViewHelpers">
|
xmlns:f="http://typo3.org/ns/fluid/ViewHelpers">
|
||||||
|
|
||||||
<f:layout name="Default"/>
|
<f:layout name="Default"/>
|
||||||
|
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
inline-template>
|
inline-template>
|
||||||
<f:form id="configuratorform" object="{inquiry}" name="inquiry" action="processConfiguratorForm"
|
<f:form id="configuratorform" object="{inquiry}" name="inquiry" action="processConfiguratorForm"
|
||||||
controller="AjaxForm" pluginName="Ajax" pageType="1703" pageUid="{settings.ajaxPageUid}"
|
controller="AjaxForm" pluginName="Ajax" pageType="1703" pageUid="{settings.ajaxPageUid}"
|
||||||
noCacheHash="1" additionalAttributes="{'@submit.prevent': 'submitForm()'}">
|
additionalAttributes="{'@submit.prevent': 'submitForm()'}">
|
||||||
<f:form.hidden property="travelType" additionalAttributes="{v-model: 'formData.type'}"/>
|
<f:form.hidden property="travelType" additionalAttributes="{v-model: 'formData.type'}"/>
|
||||||
<f:form.hidden property="hotelType" additionalAttributes="{v-model: 'formData.accommodation'}"/>
|
<f:form.hidden property="hotelType" additionalAttributes="{v-model: 'formData.accommodation'}"/>
|
||||||
<f:form.hidden property="locationType" additionalAttributes="{v-model: 'formData.destination'}"/>
|
<f:form.hidden property="locationType" additionalAttributes="{v-model: 'formData.destination'}"/>
|
||||||
@@ -96,22 +96,12 @@
|
|||||||
<div class="config-selectbox__badges">
|
<div class="config-selectbox__badges">
|
||||||
<span v-for="badge in selectedOptions(selectBoxType)" class="config-selectbox__badge">{{ badge }}</span>
|
<span v-for="badge in selectedOptions(selectBoxType)" class="config-selectbox__badge">{{ badge }}</span>
|
||||||
</div>
|
</div>
|
||||||
<span class="config-selectbox__toggle" :class="{
|
<span class="config-selectbox__toggle" :class="{closed: !selectBoxData.active && !isIncludedBox(selectBoxType),open: selectBoxData.active,included: isIncludedBox(selectBoxType)}"></span>
|
||||||
closed: !selectBoxData.active && !isIncludedBox(selectBoxType),
|
|
||||||
open: selectBoxData.active,
|
|
||||||
included: isIncludedBox(selectBoxType)
|
|
||||||
}"></span>
|
|
||||||
</a>
|
</a>
|
||||||
<div class="config-selectbox__main">
|
<div class="config-selectbox__main">
|
||||||
<a href="#"
|
<a href="#"
|
||||||
v-for="(label, value) in selectBoxData.options"
|
v-for="(label, value) in selectBoxData.options"
|
||||||
:class="[
|
:class="['config-selectbox__item ' + selectBoxType + '--' + value,{selected: isSelected(selectBoxType, value),'has--icon': selectBoxData.hasIcon}]"
|
||||||
'config-selectbox__item ' + selectBoxType + '--' + value,
|
|
||||||
{
|
|
||||||
selected: isSelected(selectBoxType, value),
|
|
||||||
'has--icon': selectBoxData.hasIcon
|
|
||||||
}
|
|
||||||
]"
|
|
||||||
@click.prevent="toggleSelection(selectBoxType, value)"
|
@click.prevent="toggleSelection(selectBoxType, value)"
|
||||||
@touchend.prevent="toggleSelection(selectBoxType, value)">
|
@touchend.prevent="toggleSelection(selectBoxType, value)">
|
||||||
<div class="config-selectbox__item__inner"
|
<div class="config-selectbox__item__inner"
|
||||||
|
|||||||
Reference in New Issue
Block a user