2017-12-11 17:21:31 +00:00
|
|
|
// Get the "couleur" parameter passed to this script
|
|
|
|
let script = document.getElementById('script-simulateur-embauche'),
|
2018-01-15 20:01:05 +00:00
|
|
|
couleur = script.dataset['couleur'],
|
2018-01-18 14:53:20 +00:00
|
|
|
src = script.getAttribute('src'),
|
|
|
|
integratorUrl = encodeURIComponent(window.location.href.toString())
|
2017-12-11 17:21:31 +00:00
|
|
|
|
|
|
|
document.write(`
|
2018-01-10 11:00:44 +00:00
|
|
|
<iframe id="simulateurEmbauche" src="${
|
|
|
|
src.split('dist')[0]
|
2018-01-18 14:53:20 +00:00
|
|
|
}?couleur=${couleur}&iframe&integratorUrl=${integratorUrl}" style="border: none; width: 100%; display: block; margin: 0 auto; height: 45em" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>
|
2017-12-11 17:21:31 +00:00
|
|
|
`)
|