diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-17 02:58:27 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-17 02:58:27 +0100 |
commit | 4d7d1a1008202da0256f606f4ef9e42f2bba8484 (patch) | |
tree | 691db8ea09c584d57dfaa804240f81a7627c2efe /playground | |
parent | 86fb71f563eb8b44cf97e9957fdfe1d5fd2a829a (diff) |
implement / fix i18n for JSX
Diffstat (limited to 'playground')
-rw-r--r-- | playground/animation.html | 34 |
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> |