You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extras/popup/popup.js
+62-2Lines changed: 62 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -601,13 +601,13 @@ async function getFeatures() {
601
601
span.textContent="Beta";
602
602
span.className="new-feature-tag beta";
603
603
div.appendChild(span);
604
-
div.addEventListener("click",function(){
604
+
span.addEventListener("click",function(){
605
605
ScratchTools.modals.create({
606
606
title: "Beta feature",
607
607
description:
608
608
"This feature is currently in a beta stage, and may have small bugs that weren't noticed during testing. There may also be changes/improvements to come soon.",
609
609
});
610
-
})
610
+
});
611
611
}
612
612
613
613
varlabel=document.createElement("label");
@@ -801,6 +801,8 @@ async function getFeatures() {
0 commit comments