1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-03-13 07:25:05 +00:00
mon-entreprise/source/entry-iframe.js

11 lines
416 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'].replace('#', ''),
src = script.getAttribute('src')
document.write(`
2018-01-10 12:00:44 +01:00
<iframe id="simulateurEmbauche" src="${
src.split('dist')[0]
}iframe.html?couleur=${couleur}" style="border: none; width: 60em; display: block; margin: 0 auto; height: 45em"></iframe>
2017-12-11 18:21:31 +01:00
`)