mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2026-02-14 09:34:00 -05:00
fixed indentiation
This commit is contained in:
@@ -9,7 +9,7 @@ function getSelectedDocs() {
|
||||
const appointent_extras = document.querySelectorAll('.appointment');
|
||||
|
||||
let output = '';
|
||||
for (const item of appointent_extras) {
|
||||
for (const item of appointent_extras) {
|
||||
if (item.checked) {
|
||||
console.log(`Checked item: ${item.dataset.text} with URL: ${item.dataset.url}`);
|
||||
output += `%0A`+ encodeURIComponent(`<a href="${window.location.origin}${item.dataset.url}">${item.dataset.text}</a>`) +`%0A`;
|
||||
|
||||
Reference in New Issue
Block a user