This commit is contained in:
Stefano Haagman 2022-04-04 15:59:17 +02:00
parent 66b5bcc5d5
commit 79f27c07a8

View file

@ -1233,6 +1233,10 @@ function initDraw(){
exportOverlay.style.display = "none"; exportOverlay.style.display = "none";
}); });
exportCloseButton.addEventListener("click", function(e){
exportDirectPost();
})
document.getElementById("highlightUncharted").addEventListener("click", function(e){ document.getElementById("highlightUncharted").addEventListener("click", function(e){
highlightUncharted = this.checked; highlightUncharted = this.checked;
render(path); render(path);
@ -1254,6 +1258,9 @@ function initDraw(){
jsonString = jsonString.join("\n "); jsonString = jsonString.join("\n ");
jsonString = " "+jsonString; jsonString = " "+jsonString;
textarea.value = jsonString; textarea.value = jsonString;
console.log("a");
var directPostUrl = "https://www.reddit.com/r/placeAtlas2/submit?selftext=true&title=New%20Submission&text="+encodeURIComponent(document.getElementById("exportString").value);
document.getElementById("exportDirectPost").href=directPostUrl;
exportOverlay.style.display = "flex"; exportOverlay.style.display = "flex";
@ -1261,6 +1268,7 @@ function initDraw(){
textarea.select(); textarea.select();
} }
function calculateCenter(path){ function calculateCenter(path){
var area = 0, var area = 0,