Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kaheetonaa committed Oct 16, 2024
1 parent 98110c2 commit 3cfa0a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions dist/iD.js
Original file line number Diff line number Diff line change
Expand Up @@ -67806,7 +67806,6 @@

// modules/ui/splash.js
function uiSplash(context) {
var __team_selected2 = "";
return (selection2) => {
let updateMessage = "";
const sawPrivacyVersion = corePreferences("sawPrivacyVersion");
Expand All @@ -67830,7 +67829,7 @@
team_select.append("option").attr("value", "slovakia").html("Slovakia");
team_select.append("option").attr("value", "spain").html("Spain");
team_select.on("change", () => {
__team_selected2 = document.getElementById("team").value;
__team_selected = document.getElementById("team").value;
});
let modalSection = introModal.append("div").attr("class", "modal-section");
modalSection.append("p").html(_t.html("splash.text", {
Expand All @@ -67855,7 +67854,7 @@
let startEditing = buttonWrap.append("button").attr("class", "start-editing").on("click", () => {
if (document.getElementById("team").value != "null") {
modalSelection.close();
console.log(__team_selected2);
console.log(__team_selected);
}
});
startEditing.append("svg").attr("class", "logo logo-features").append("use").attr("xlink:href", "#iD-logo-features");
Expand Down
Loading

0 comments on commit 3cfa0a2

Please sign in to comment.