aboutsummaryrefslogtreecommitdiff
path: root/background
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-13 23:30:18 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-13 23:31:17 +0100
commitf3fb8be7db6de87dae40d41bd5597a735c800ca1 (patch)
tree1a061db04de8f5bb5a6b697fa56a9948f67fac2f /background
parent200d83c3886149ebb3f018530302079e12a81f6b (diff)
downloadwallet-core-f3fb8be7db6de87dae40d41bd5597a735c800ca1.tar.xz
restructuring
Diffstat (limited to 'background')
-rw-r--r--background/background.html13
l---------background/content_scripts1
l---------background/lib1
-rw-r--r--background/main.ts42
4 files changed, 0 insertions, 57 deletions
diff --git a/background/background.html b/background/background.html
deleted file mode 100644
index 0d616646c..000000000
--- a/background/background.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <script src="../lib/vendor/URI.js"></script>
- <script src="../lib/vendor/system-csp-production.src.js"></script>
- <script src="main.js"></script>
- <meta charset="UTF-8">
- <title>(wallet bg page)</title>
-</head>
-<body>
- <img id="taler-logo" src="../img/icon.png">
-</body>
-</html>
diff --git a/background/content_scripts b/background/content_scripts
deleted file mode 120000
index d2499f6d2..000000000
--- a/background/content_scripts
+++ /dev/null
@@ -1 +0,0 @@
-../content_scripts \ No newline at end of file
diff --git a/background/lib b/background/lib
deleted file mode 120000
index dc598c56d..000000000
--- a/background/lib
+++ /dev/null
@@ -1 +0,0 @@
-../lib \ No newline at end of file
diff --git a/background/main.ts b/background/main.ts
deleted file mode 100644
index f039f9aea..000000000
--- a/background/main.ts
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- This file is part of TALER
- (C) 2016 GNUnet e.V.
-
- TALER is free software; you can redistribute it and/or modify it under the
- terms of the GNU General Public License as published by the Free Software
- Foundation; either version 3, or (at your option) any later version.
-
- TALER is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License along with
- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
- */
-
-/**
- * Entry point for the background page.
- *
- * @author Florian Dold
- */
-
-"use strict";
-
-window.addEventListener("load", () => {
-
- // TypeScript does not allow ".js" extensions in the
- // module name, so SystemJS must add it.
- System.config({
- defaultJSExtensions: true,
- });
-
- System.import("../lib/wallet/wxMessaging")
- .then((wxMessaging) => {
- // Export as global for debugger
- (window as any).wxMessaging = wxMessaging;
- wxMessaging.wxMain();
- }).catch((e) => {
- console.log("wallet failed");
- console.error(e.stack);
- });
-});