We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c3fcef commit 619230aCopy full SHA for 619230a
js/activity.js
@@ -1594,18 +1594,6 @@ class Activity {
1594
this.blocksContainer.x = 0;
1595
this.blocksContainer.y = 0;
1596
1597
- Element.prototype.remove = () => {
1598
- this.parentElement.removeChild(this);
1599
- };
1600
-
1601
- NodeList.prototype.remove = HTMLCollection.prototype.remove = () => {
1602
- for (let i = 0, len = this.length; i < len; i++) {
1603
- if (this[i] && this[i].parentElement) {
1604
- this[i].parentElement.removeChild(this[i]);
1605
- }
1606
1607
1608
1609
const table = document.getElementById("myTable");
1610
if (table !== null) {
1611
table.remove();
0 commit comments