-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwidget.js
88 lines (67 loc) · 2.65 KB
/
widget.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*!
* domready (c) Dustin Diaz 2014 - License MIT
*/
!function (name, definition) {
if (typeof module != 'undefined') module.exports = definition()
else if (typeof define == 'function' && typeof define.amd == 'object') define(definition)
else this[name] = definition()
}('domready', function () {
var fns = [], listener
, doc = typeof document === 'object' && document
, hack = doc && doc.documentElement.doScroll
, domContentLoaded = 'DOMContentLoaded'
, loaded = doc && (hack ? /^loaded|^c/ : /^loaded|^i|^c/).test(doc.readyState)
if (!loaded && doc)
doc.addEventListener(domContentLoaded, listener = function () {
doc.removeEventListener(domContentLoaded, listener)
loaded = 1
while (listener = fns.shift()) listener()
})
return function (fn) {
loaded ? setTimeout(fn, 0) : fns.push(fn)
}
});
(function () {
domready(function () {
// Add css to page
var element = document.createElement("link");
element.href = "https://widget.test/widget.css";
element.type = "text/css";
element.rel = "stylesheet";
element.media = "screen,print";
console.log(
document.getElementById('mod24-widget').dataset
);
document.getElementsByTagName("head")[0].appendChild(element);
const iframe = `<iframe width="600" height="450" frameborder="0" style="border:0" src="https://maps.google.com/maps?width=100%&height=600&hl=en&q=1%20Grafton%20Street%2C%20Dublin%2C%20Ireland+(My%20Business%20Name)&ie=UTF8&t=&z=14&iwloc=B&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" allowfullscreen></iframe>`;
var button = document.createElement("a");
button.innerHTML = "Quick quote";
button.className = "btn btn-primary";
const body = document.getElementsByTagName("body")[0];
body.appendChild(button);
var modal = document.createElement("div");
modal.id = "myModal";
modal.className = "modal";
var modalContent = document.createElement("div");
modalContent.className = "modal-content";
modalContent.innerHTML = iframe;
modalContent.style.animation = "animatetop 0.5s";
modal.appendChild(modalContent);
var close = document.createElement("span");
close.className = "close";
close.innerHTML = "×";
modalContent.appendChild(close);
body.appendChild(modal);
button.addEventListener("click", () => {
modal.style.display = "block";
});
close.addEventListener("click", () => {
modal.style.display = "none";
});
window.onclick = function (event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
});
})();