IO-106 Jira Submit
This commit is contained in:
@@ -9,6 +9,12 @@
|
|||||||
<!-- <link rel="apple-touch-icon" href="logo192.png" /> -->
|
<!-- <link rel="apple-touch-icon" href="logo192.png" /> -->
|
||||||
<link rel="apple-touch-icon" href="logo192.png" />
|
<link rel="apple-touch-icon" href="logo192.png" />
|
||||||
|
|
||||||
|
<!-- <script
|
||||||
|
data-jsd-embedded
|
||||||
|
data-key="51adb36e-ee16-46b1-a4c6-4b6d5fcd8530"
|
||||||
|
data-base-url="https://jsd-widget.atlassian.com"
|
||||||
|
src="https://jsd-widget.atlassian.com/assets/embed.js"
|
||||||
|
></script> -->
|
||||||
<!--
|
<!--
|
||||||
manifest.json provides metadata used when your web app is installed on a
|
manifest.json provides metadata used when your web app is installed on a
|
||||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||||
|
|||||||
@@ -22,8 +22,14 @@ const useScript = () => {
|
|||||||
script.setAttribute("data-jsd-embedded", true);
|
script.setAttribute("data-jsd-embedded", true);
|
||||||
script.setAttribute("data-key", "51adb36e-ee16-46b1-a4c6-4b6d5fcd8530");
|
script.setAttribute("data-key", "51adb36e-ee16-46b1-a4c6-4b6d5fcd8530");
|
||||||
script.setAttribute("data-base-url", "https://jsd-widget.atlassian.com");
|
script.setAttribute("data-base-url", "https://jsd-widget.atlassian.com");
|
||||||
|
//script.async = true;
|
||||||
|
script.onload = () => {
|
||||||
|
var DOMContentLoaded_event = document.createEvent("Event");
|
||||||
|
DOMContentLoaded_event.initEvent("DOMContentLoaded", true, true);
|
||||||
|
window.document.dispatchEvent(DOMContentLoaded_event);
|
||||||
|
};
|
||||||
document.head.appendChild(script);
|
document.head.appendChild(script);
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
document.head.removeChild(script);
|
document.head.removeChild(script);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user