I would like the Roomle Configurator to always open in EDIT mode rather than VIEW only on a mobile device, how to I force this to happen? I've read the documentation but don't seem to be able to make it work, this is my current code...
<script type="module">
import RoomleConfiguratorApi from 'https://cdn.shopify.com/s/files/1/0441/4531/1894/files/roomle-configurator-api.es.min.js';
(async ()=> {
const options = {
translations: {
en: {
params: {
'request-product': 'Add to Cart'
},
addons:{
'hint':'All builds should have at least one rear panel to aid stability. All
sizes in centimetres'
},
"global": {
"gdpr-info": "I agree to receiving emails about my saved design, as well as the occasional piece of
carefully curated content from Shelved. The data controller is Roomle GmbH. Your data will be
processed in order to allow you to finish and save your design. The legal basis for the processing is
your consent (art. 6(1)(a)(f) of the GDPR).",
}
}
},
id: 'racksystems_test:sub_root',
locale: 'en',
overrideCountry: 'en',
overrideTenant: '114',
usePriceService: false,
emails: true,
deeplink: 'https://www.shelved.co.uk/pages/product-configurator?
roomleId=#CONFIGURATIONID#&configuratorId=racksystems',
};
const configurator = await RoomleConfiguratorApi.create(
'rackSystems',
document.getElementById('configurator-container'),
options,
);