Skip to content

Commit 3d3e2ba

Browse files
marcoswcaalfredfrancis
authored andcommitted
Bug fix in widget (alfredfrancis#92)
using body.appendChild method instead of changing the innerHTML
1 parent cdfe971 commit 3d3e2ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/assets/widget/iky_widget.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
</div>
7373
`
7474

75-
document.body.innerHTML += content;
75+
$("body").append(content);
7676

7777
$(".iky_container").hide();
7878

0 commit comments

Comments
 (0)