aboutsummaryrefslogtreecommitdiff
path: root/playground
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-17 02:58:27 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-17 02:58:27 +0100
commit4d7d1a1008202da0256f606f4ef9e42f2bba8484 (patch)
tree691db8ea09c584d57dfaa804240f81a7627c2efe /playground
parent86fb71f563eb8b44cf97e9957fdfe1d5fd2a829a (diff)
downloadwallet-core-4d7d1a1008202da0256f606f4ef9e42f2bba8484.tar.xz
implement / fix i18n for JSX
Diffstat (limited to 'playground')
-rw-r--r--playground/animation.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/playground/animation.html b/playground/animation.html
deleted file mode 100644
index 893276b3f..000000000
--- a/playground/animation.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <title>Spinner playground</title>
- <script src="/src/vendor/system-csp-production.src.js"></script>
- </head>
- <html>
- <div style="display: none;">
- <img src="/img/icon.png" id="taler-logo" style="display:hidden;">
- </div>
- <br />
- <div id="container"></div>
- <script>
- "use strict";
-
- System.config({
- defaultJSExtensions: true,
- });
-
- System.import("/src/chromeBadge")
- .then((badge) => {
- let b = new badge.ChromeBadge(window);
- window.badge = b;
- document.getElementById("container").appendChild(b.canvas);
- })
- .catch((e) => {
- console.error(e.stack);
- });
- </script>
- <br />
- <button onclick="badge.startBusy()">start</button>
- <button onclick="badge.stopBusy()">stop</button>
- </html>
-</html>