2018-07-16 23:06:37 +02:00
|
|
|
/* global $, send */ "use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-07-25 21:44:02 +02:00
|
|
|
initializeTour();
|
2018-07-16 23:06:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-08-11 00:29:06 +02:00
|
|
|
if (window.location.href.search && window.location.href.split("?url=")[1]) { // pre-fill example one if search parameter exists
|
2018-07-27 00:18:26 +02:00
|
|
|
const searchParameter = window.location.href.split("?url=")[1];
|
|
|
|
fetchMetadata(1, searchParameter);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-09-27 18:11:26 +02:00
|
|
|
document.querySelector("body").addEventListener("click", event => {
|
|
|
|
if (event.target.dataset.action) {
|
|
|
|
event.preventDefault();
|
|
|
|
document.querySelector(".tour").classList.add("waiting");
|
|
|
|
handleExamples(event.target);
|
|
|
|
}
|
2018-07-25 00:29:25 +02:00
|
|
|
|
2018-09-27 18:11:26 +02:00
|
|
|
if (
|
|
|
|
event.explicitOriginalTarget.classList &&
|
|
|
|
event.explicitOriginalTarget.classList[0] === "tour__content__meme__canvas__thumbnail"
|
|
|
|
) {
|
2018-09-28 21:09:45 +02:00
|
|
|
for (const thumbnail of document.querySelectorAll(".tour__content__meme__canvas__thumbnail"))
|
2018-09-27 18:11:26 +02:00
|
|
|
thumbnail.classList.remove("selected");
|
|
|
|
|
|
|
|
event.explicitOriginalTarget.classList.add("selected");
|
|
|
|
updateCanvas(event.explicitOriginalTarget);
|
|
|
|
}
|
2018-07-16 23:06:37 +02:00
|
|
|
});
|
|
|
|
|
2018-09-27 18:11:26 +02:00
|
|
|
document.getElementById("fetch-claim-uri").addEventListener("keyup", event => {
|
|
|
|
const key = event.keyCode ? event.keyCode : event.which;
|
2018-07-24 18:44:32 +02:00
|
|
|
|
2018-09-27 22:46:59 +02:00
|
|
|
switch(true) {
|
|
|
|
case (document.querySelector("[data-example='1']").classList.contains("active")):
|
|
|
|
if (
|
|
|
|
key === 13 &&
|
|
|
|
document.getElementById("fetch-claim-uri").value.length > 0
|
|
|
|
) fetchMetadata(1, document.getElementById("fetch-claim-uri").value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (document.querySelector("[data-example='3']").classList.contains("active")):
|
|
|
|
if (
|
|
|
|
key === 13 &&
|
|
|
|
document.getElementById("fetch-claim-uri").value.length > 0
|
|
|
|
) fetchMetadata(3, document.getElementById("fetch-claim-uri").value);
|
|
|
|
break;
|
2018-09-28 21:09:45 +02:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2018-09-27 22:46:59 +02:00
|
|
|
}
|
2018-07-24 18:44:32 +02:00
|
|
|
});
|
|
|
|
|
2018-09-27 18:11:26 +02:00
|
|
|
document.querySelector("body").addEventListener("keyup", event => {
|
|
|
|
if (
|
|
|
|
event.target.id === "meme-top-line" ||
|
|
|
|
event.target.id === "meme-bottom-line"
|
|
|
|
) updateCanvas();
|
2018-08-09 16:38:42 +02:00
|
|
|
});
|
|
|
|
|
2018-07-18 22:31:05 +02:00
|
|
|
|
|
|
|
|
2018-07-23 23:46:58 +02:00
|
|
|
// H E L P E R S
|
|
|
|
|
2018-08-21 23:22:31 +02:00
|
|
|
function clearCanvas(canvas) {
|
|
|
|
const ctx = canvas.getContext("2d");
|
|
|
|
|
|
|
|
ctx.save();
|
|
|
|
ctx.globalCompositeOperation = "copy";
|
|
|
|
ctx.strokeStyle = "transparent";
|
|
|
|
ctx.beginPath();
|
|
|
|
ctx.lineTo(0, 0);
|
|
|
|
ctx.stroke();
|
|
|
|
ctx.restore();
|
|
|
|
}
|
|
|
|
|
2018-08-11 00:29:06 +02:00
|
|
|
function detectLanguageAndUpdate() { // eslint-disable-line
|
2018-07-23 23:46:58 +02:00
|
|
|
const compare = (array1, array2) => array2.filter(value => array2.indexOf(value)); // compare two arrays and get match(es)
|
|
|
|
const memeLocaleObject = $("#meme-language").children();
|
|
|
|
const memeLocales = [];
|
|
|
|
const userLocales = [];
|
|
|
|
|
|
|
|
for (const language of navigator.languages) userLocales.push(language);
|
|
|
|
|
|
|
|
for (const key in memeLocaleObject) {
|
2018-09-28 21:09:45 +02:00
|
|
|
if (memeLocaleObject[key] && memeLocaleObject[key].value)
|
|
|
|
memeLocales.push(memeLocaleObject[key].value);
|
2018-07-23 23:46:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
memeLocales.length &&
|
|
|
|
userLocales.length &&
|
|
|
|
compare(memeLocales, userLocales).length
|
|
|
|
) $("#meme-language").children(`option[value="${compare(memeLocales, userLocales)[0]}"]`).attr("selected", true);
|
|
|
|
}
|
|
|
|
|
2018-08-21 23:22:31 +02:00
|
|
|
function debounce(func, wait, immediate) {
|
|
|
|
let timeout;
|
|
|
|
|
|
|
|
return function () {
|
|
|
|
const context = this;
|
|
|
|
const args = arguments;
|
|
|
|
|
|
|
|
const later = () => {
|
|
|
|
timeout = null;
|
|
|
|
if (!immediate) func.apply(context, args);
|
|
|
|
};
|
|
|
|
|
|
|
|
const callNow = immediate && !timeout;
|
|
|
|
clearTimeout(timeout);
|
|
|
|
|
|
|
|
timeout = setTimeout(later, wait);
|
|
|
|
if (callNow) func.apply(context, args);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-07-25 21:44:02 +02:00
|
|
|
function initializeTour() {
|
2018-09-27 18:11:26 +02:00
|
|
|
document.querySelector(".tour").classList.add("waiting");
|
|
|
|
document.querySelector("#fetch-claim-uri").value = "";
|
|
|
|
document.querySelector("#fetch-claim-uri").focus();
|
|
|
|
document.querySelector(".tour__navigation__example:nth-child(1)").classList.add("active");
|
2018-07-25 21:44:02 +02:00
|
|
|
|
2018-08-08 01:15:34 +02:00
|
|
|
send(JSON.stringify({
|
|
|
|
"message": "landed on tour"
|
|
|
|
}));
|
|
|
|
|
2018-08-21 23:22:31 +02:00
|
|
|
setTimeout(() => {
|
2018-09-27 18:11:26 +02:00
|
|
|
document.querySelector(".tour__navigation__example:nth-child(1)").click();
|
|
|
|
}, 300);
|
2018-07-25 21:44:02 +02:00
|
|
|
}
|
|
|
|
|
2018-07-18 22:31:05 +02:00
|
|
|
|
|
|
|
|
2018-08-10 00:17:47 +02:00
|
|
|
function fetchMetadata(exampleNumber, data) {
|
|
|
|
if (!exampleNumber) return;
|
2018-07-25 00:29:25 +02:00
|
|
|
|
2018-08-10 00:17:47 +02:00
|
|
|
switch(exampleNumber) {
|
2018-07-25 00:29:25 +02:00
|
|
|
case 1:
|
|
|
|
send(JSON.stringify({
|
|
|
|
"claim": data,
|
|
|
|
"message": "fetch metadata",
|
|
|
|
"method": "resolve",
|
2018-08-10 00:17:47 +02:00
|
|
|
"example": exampleNumber
|
2018-07-25 00:29:25 +02:00
|
|
|
}));
|
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("fetch-claim-uri").value = data;
|
2018-07-25 00:29:25 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("tour-results").innerHTML = `
|
2018-08-08 22:20:53 +02:00
|
|
|
<pre><code class="language-bash">
|
2018-08-14 22:15:27 +02:00
|
|
|
<span class="token comment"># With the LBRY app/daemon running locally, you can use this in your Terminal</span>
|
|
|
|
curl --header <span class="token string">"Content-Type: application/json"</span> --data <span class="token string">'{ "method": "resolve", "params": { "uri": "${data}" }}'</span> <span class="token url">http://localhost:5279 </span>
|
2018-08-08 22:20:53 +02:00
|
|
|
</code></pre>
|
2018-07-18 22:31:05 +02:00
|
|
|
|
2018-08-08 22:20:53 +02:00
|
|
|
<div class="loader" id="temp-loader"></div>
|
2018-08-10 00:17:47 +02:00
|
|
|
<div id="example1-result"></div>
|
2018-09-28 21:09:45 +02:00
|
|
|
`;
|
2018-07-25 00:29:25 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("tour-loader").style.display = "none";
|
2018-07-25 00:29:25 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2018-07-25 20:35:59 +02:00
|
|
|
send(JSON.stringify({
|
|
|
|
"data": data,
|
|
|
|
"message": "fetch metadata",
|
|
|
|
"method": "publish",
|
2018-08-10 00:17:47 +02:00
|
|
|
"example": exampleNumber
|
|
|
|
}));
|
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("tour-results").innerHTML = `
|
2018-08-18 00:22:19 +02:00
|
|
|
<pre><code class="language-bash">
|
2018-09-28 21:09:45 +02:00
|
|
|
<span class="token comment"># With the LBRY app/daemon running locally, you can use this in your Terminal</span>
|
|
|
|
curl --header <span class="token string">"Content-Type: application/json"</span> --data <span class="token string">'{ "method": "publish", "params": { "name": "TITLE_OF_YOUR_CONTENT", "file_path": "ABSOLUTE_PATH_TO_MEDIA_ON_YOUR_COMPUTER", "bid": "0.001", "metadata": { "description": "DESCRIPTION_OF_YOUR_CONTENT", "title": "TITLE_OF_YOUR_CONTENT", "language": "en", "license": "", "nsfw": false }}}'</span> <span class="token url">http://localhost:5279 </span>
|
2018-08-18 00:22:19 +02:00
|
|
|
</code></pre>
|
|
|
|
|
|
|
|
<div class="loader" id="temp-loader"></div>
|
|
|
|
<div id="example2-result"></div>
|
2018-09-28 21:09:45 +02:00
|
|
|
`;
|
2018-08-18 00:22:19 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("tour-loader").style.display = "none";
|
2018-08-10 00:17:47 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
send(JSON.stringify({
|
|
|
|
"claim": data,
|
|
|
|
"message": "fetch metadata",
|
|
|
|
"method": "wallet_send",
|
|
|
|
"example": exampleNumber
|
2018-07-25 20:35:59 +02:00
|
|
|
}));
|
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("fetch-claim-uri").value = data;
|
2018-08-10 00:17:47 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("tour-results").innerHTML = `
|
2018-08-10 00:17:47 +02:00
|
|
|
<pre><code class="language-bash">
|
2018-08-14 22:15:27 +02:00
|
|
|
<span class="token comment"># With the LBRY app/daemon running locally, you can use this in your Terminal</span>
|
|
|
|
curl --header <span class="token string">"Content-Type: application/json"</span> --data <span class="token string">'{ "method": "wallet_send", "params": { "amount": "0.01", "claim_id": "${data}" }}'</span> <span class="token url">http://localhost:5279 </span>
|
2018-08-10 00:17:47 +02:00
|
|
|
</code></pre>
|
|
|
|
|
|
|
|
<div class="loader" id="temp-loader"></div>
|
|
|
|
<div id="example3-result"></div>
|
2018-09-28 21:09:45 +02:00
|
|
|
`;
|
2018-08-10 00:17:47 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("tour-loader").style.display = "none";
|
2018-07-25 00:29:25 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-07-18 22:31:05 +02:00
|
|
|
|
2018-07-25 20:35:59 +02:00
|
|
|
function getMemeInfo() { // TODO: Error handling
|
2018-08-10 00:17:47 +02:00
|
|
|
const info = {
|
2018-09-28 21:09:45 +02:00
|
|
|
description: document.getElementById("meme-description").value,
|
|
|
|
file_path: document.getElementById("meme-canvas").toDataURL("image/jpeg", 0.6),
|
|
|
|
language: document.getElementById("meme-language").value,
|
|
|
|
license: document.getElementById("meme-license").value,
|
|
|
|
name: document.getElementById("meme-title").value,
|
|
|
|
nsfw: document.getElementById("meme-nsfw-flag").checked,
|
|
|
|
title: document.getElementById("meme-title").value
|
2018-08-10 00:17:47 +02:00
|
|
|
};
|
2018-07-25 00:29:25 +02:00
|
|
|
|
|
|
|
return info;
|
2018-07-18 22:31:05 +02:00
|
|
|
}
|
|
|
|
|
2018-08-21 23:22:31 +02:00
|
|
|
const handleExamples = debounce(event => {
|
|
|
|
let exampleNumber;
|
2018-09-27 18:11:26 +02:00
|
|
|
const data = event.dataset;
|
2018-07-25 00:29:25 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
if (!parseInt(document.querySelector(".tour__navigation__example.active").dataset.example)) return;
|
|
|
|
exampleNumber = parseInt(document.querySelector(".tour__navigation__example.active").dataset.example);
|
2018-07-25 00:29:25 +02:00
|
|
|
|
2018-08-21 23:22:31 +02:00
|
|
|
switch(data.action) {
|
|
|
|
case "choose claim":
|
|
|
|
fetchMetadata(exampleNumber, data.claimId);
|
|
|
|
break;
|
2018-07-24 18:44:32 +02:00
|
|
|
|
2018-08-21 23:22:31 +02:00
|
|
|
case "execute claim":
|
2018-09-28 21:09:45 +02:00
|
|
|
if (!document.getElementById("fetch-claim-uri").value.length > 0) return;
|
|
|
|
fetchMetadata(exampleNumber, document.getElementById("fetch-claim-uri").value);
|
2018-08-21 23:22:31 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case "tour, example 1":
|
2018-09-28 21:09:45 +02:00
|
|
|
if (document.getElementById("tour-loader").classList.contains("tour__content__meme")) {
|
|
|
|
document.getElementById("tour-loader").classList.remove("tour__content__meme");
|
|
|
|
document.getElementById("tour-loader").classList.add("tour__content__trends");
|
2018-08-21 23:22:31 +02:00
|
|
|
}
|
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("fetch-claim-uri").value = ""; // reset URL bar
|
|
|
|
document.querySelector("#tour-url button").textContent = "Resolve";
|
|
|
|
|
|
|
|
if (document.getElementById("tour-url").style.display === "none")
|
|
|
|
document.getElementById("tour-url").removeAttribute("style");
|
2018-08-21 23:22:31 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
for (const example of document.querySelectorAll(".tour__navigation__example"))
|
|
|
|
example.classList.remove("active");
|
2018-08-21 23:22:31 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.querySelector(".tour__navigation__example:nth-child(1)").classList.add("active");
|
|
|
|
|
|
|
|
document.getElementById("tour-loader").innerHTML = "";
|
|
|
|
document.getElementById("tour-results").innerHTML = "";
|
|
|
|
|
|
|
|
document.getElementById("tour-loader").removeAttribute("style");
|
|
|
|
document.getElementById("tour-results").removeAttribute("style");
|
2018-08-21 23:22:31 +02:00
|
|
|
|
|
|
|
send(JSON.stringify({
|
|
|
|
"message": `request for ${data.action}`
|
|
|
|
}));
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "tour, example 2":
|
2018-09-28 21:09:45 +02:00
|
|
|
if (document.getElementById("tour-loader").classList.contains("tour__content__trends")) {
|
|
|
|
document.getElementById("tour-loader").classList.remove("tour__content__trends");
|
|
|
|
document.getElementById("tour-loader").classList.add("tour__content__meme");
|
2018-08-21 23:22:31 +02:00
|
|
|
}
|
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("fetch-claim-uri").value = ""; // reset URL bar
|
|
|
|
document.getElementById("tour-url").style.display = "none";
|
|
|
|
|
|
|
|
for (const example of document.querySelectorAll(".tour__navigation__example"))
|
|
|
|
example.classList.remove("active");
|
2018-08-21 23:22:31 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.querySelector(".tour__navigation__example:nth-child(2)").classList.add("active");
|
2018-08-21 23:22:31 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("tour-loader").innerHTML = "";
|
|
|
|
document.getElementById("tour-results").innerHTML = "";
|
|
|
|
|
|
|
|
document.getElementById("tour-loader").removeAttribute("style");
|
|
|
|
document.getElementById("tour-results").removeAttribute("style");
|
2018-08-21 23:22:31 +02:00
|
|
|
|
|
|
|
send(JSON.stringify({
|
|
|
|
"message": `request for ${data.action}`
|
|
|
|
}));
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "tour, example 3":
|
2018-09-28 21:09:45 +02:00
|
|
|
if (document.getElementById("tour-loader").classList.contains("tour__content__meme")) {
|
|
|
|
document.getElementById("tour-loader").classList.remove("tour__content__meme");
|
|
|
|
document.getElementById("tour-loader").classList.add("tour__content__trends");
|
2018-08-21 23:22:31 +02:00
|
|
|
}
|
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.getElementById("fetch-claim-uri").value = ""; // reset URL bar
|
|
|
|
document.querySelector("#tour-url button").textContent = "Tip";
|
|
|
|
|
|
|
|
if (document.getElementById("tour-url").style.display === "none")
|
|
|
|
document.getElementById("tour-url").removeAttribute("style");
|
2018-08-21 23:22:31 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
for (const example of document.querySelectorAll(".tour__navigation__example"))
|
|
|
|
example.classList.remove("active");
|
2018-08-21 23:22:31 +02:00
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
document.querySelector(".tour__navigation__example:nth-child(3)").classList.add("active");
|
|
|
|
|
|
|
|
document.getElementById("tour-loader").innerHTML = "";
|
|
|
|
document.getElementById("tour-results").innerHTML = "";
|
|
|
|
|
|
|
|
document.getElementById("tour-loader").removeAttribute("style");
|
|
|
|
document.getElementById("tour-results").removeAttribute("style");
|
2018-08-21 23:22:31 +02:00
|
|
|
|
|
|
|
send(JSON.stringify({
|
|
|
|
"message": `request for ${data.action}`
|
|
|
|
}));
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "upload image":
|
|
|
|
fetchMetadata(exampleNumber, getMemeInfo());
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}, 10);
|
2018-07-24 18:44:32 +02:00
|
|
|
|
2018-08-11 00:29:06 +02:00
|
|
|
function initCanvas() { // eslint-disable-line
|
2018-07-24 18:44:32 +02:00
|
|
|
const canvas = document.getElementById("meme-canvas");
|
|
|
|
const canvasHeight = 300;
|
2018-09-28 21:09:45 +02:00
|
|
|
const canvasWidth = 400;
|
2018-07-24 18:44:32 +02:00
|
|
|
const ctx = canvas.getContext("2d");
|
|
|
|
const img = document.getElementById("base-image");
|
|
|
|
|
|
|
|
clearCanvas(canvas);
|
|
|
|
|
|
|
|
ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight, 0, 0, canvasWidth, canvasHeight);
|
|
|
|
ctx.fillStyle = "white";
|
|
|
|
ctx.font = "bold 28px Karla";
|
|
|
|
ctx.lineJoin = "round";
|
|
|
|
ctx.lineWidth = 4;
|
|
|
|
ctx.strokeStyle = "black";
|
|
|
|
ctx.textAlign = "center";
|
|
|
|
ctx.textBaseline = "top";
|
2018-09-28 21:09:45 +02:00
|
|
|
|
|
|
|
ctx.strokeText(document.getElementById("meme-top-line").value.toUpperCase(), canvasWidth / 2, 20);
|
|
|
|
ctx.fillText(document.getElementById("meme-top-line").value.toUpperCase(), canvasWidth / 2, 20);
|
|
|
|
|
|
|
|
ctx.strokeText(document.getElementById("meme-bottom-line").value.toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
|
|
|
|
ctx.fillText(document.getElementById("meme-bottom-line").value.toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
|
2018-07-24 18:44:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function updateCanvas(imageSource) {
|
|
|
|
const canvas = document.getElementById("meme-canvas");
|
|
|
|
const canvasHeight = 300;
|
2018-09-28 21:09:45 +02:00
|
|
|
const canvasWidth = 400;
|
2018-07-24 18:44:32 +02:00
|
|
|
const ctx = canvas.getContext("2d");
|
|
|
|
const img = document.getElementById("base-image");
|
|
|
|
|
|
|
|
clearCanvas(canvas);
|
|
|
|
|
|
|
|
if (imageSource) {
|
|
|
|
ctx.drawImage(imageSource, 0, 0, canvasWidth, canvasHeight, 0, 0, canvasWidth, canvasHeight);
|
|
|
|
img.src = imageSource.src;
|
|
|
|
} ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight, 0, 0, canvasWidth, canvasHeight);
|
|
|
|
|
2018-09-28 21:09:45 +02:00
|
|
|
ctx.strokeText(document.getElementById("meme-top-line").value.toUpperCase(), canvasWidth / 2, 20);
|
|
|
|
ctx.fillText(document.getElementById("meme-top-line").value.toUpperCase(), canvasWidth / 2, 20);
|
|
|
|
|
|
|
|
ctx.strokeText(document.getElementById("meme-bottom-line").value.toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
|
|
|
|
ctx.fillText(document.getElementById("meme-bottom-line").value.toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
|
2018-07-24 18:44:32 +02:00
|
|
|
}
|