1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 01:45:03 +00:00
mon-entreprise/source/iframe-script.js

12 lines
553 B
JavaScript
Raw Normal View History

2017-12-11 18:21:31 +01:00
// Get the "couleur" parameter passed to this script
let script = document.getElementById('script-simulateur-embauche'),
couleur = script.dataset['couleur'],
2018-01-18 15:53:20 +01:00
src = script.getAttribute('src'),
integratorUrl = encodeURIComponent(window.location.href.toString())
2017-12-11 18:21:31 +01:00
document.write(`
2018-01-10 12:00:44 +01:00
<iframe id="simulateurEmbauche" src="${
src.split('dist')[0]
2018-01-18 15:53:20 +01: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 18:21:31 +01:00
`)