1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 22:15:02 +00:00
mon-entreprise/source/iframe-script.js
2018-04-17 16:27:53 +02:00

12 lines
598 B
JavaScript

// Get the "couleur" parameter passed to this script
let script = document.getElementById('script-simulateur-embauche'),
couleur = script.dataset['couleur'],
src = script.getAttribute('src'),
integratorUrl = encodeURIComponent(window.location.href.toString()),
lang = script.dataset['lang']
document.write(`
<iframe id="simulateurEmbauche" src="${
src.split('dist')[0]
}?couleur=${couleur}&iframe&integratorUrl=${integratorUrl}&lang=${lang}" style="border: none; width: 100%; display: block; margin: 0 auto; height: 45em" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>
`)