Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
dermatthes committed Dec 12, 2024
1 parent c35a70d commit 484526c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leuffen/jodastyle",
"version": "3.2.2",
"version": "3.2.3",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
Expand Down
2 changes: 1 addition & 1 deletion src/component/joda-content-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class JodaContentElement extends HTMLElement {
// urldecode hash
hash = decodeURIComponent(hash);
const element = document.getElementById(hash);
console.log("Scrolling to", window.location.hash, element);
//console.log("Scrolling to", window.location.hash, element);
if (element) {
element.scrollIntoView({behavior: "smooth"});
}
Expand Down
2 changes: 1 addition & 1 deletion src/helper/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export async function getTemplateFilledWithContent(templateSelector : string, co
}, content);

let clone = document.createRange().createContextualFragment(templateHtml);
console.log(templateSelector, "Content: ", content.innerHTML);
//console.log(templateSelector, "Content: ", content.innerHTML);
let done = [];

clone.querySelectorAll("slot[data-select][data-copy]").forEach((slot) => {
Expand Down

0 comments on commit 484526c

Please sign in to comment.