Scroll Sites for Confluence
Let your help center visitors view your latest releases notes and roadmaps, published straight from Jira.
Installation
1
2
3

4
5
6
7
Adding a feedback form
1
2
3
(function () {
const SCRIPT_URL = "https://embed.released.so/1/embed.js";
const FORM_ID = "b67de5f5-2ece-46ba-aa84-602ab58f40ea";
const FEEDBACK_URL = "https://released.so/feedback";
function init() {
if (!document.querySelector(`released-form[form-id="${FORM_ID}"]`)) {
const form = document.createElement("released-form");
form.setAttribute("form-id", FORM_ID);
document.body.appendChild(form);
}
if (!document.querySelector(`script[src="${SCRIPT_URL}"]`)) {
const script = document.createElement("script");
script.src = SCRIPT_URL;
script.defer = true;
document.head.appendChild(script);
}
}
if (document.body) init();
else document.addEventListener("DOMContentLoaded", init);
document.addEventListener("click", function (e) {
const selector = `a[href="${FEEDBACK_URL}"]`;
const link =
e.target.closest(selector) ||
e.target.closest("li")?.querySelector(selector);
if (!link) return;
e.preventDefault();
e.stopImmediatePropagation();
window.Released?.show("form", FORM_ID);
}, true);
})();4
Legacy installation
1
2
3

4
Last updated
Was this helpful?