aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-09-13 10:48:39 +0800
committerkumavis <aaron@kumavis.me>2016-09-13 10:48:39 +0800
commit5126ddaf0c25d243c625adff82dc95273acf1291 (patch)
tree5556e74adffa919875d03f9420b31705447c5b5c /library
parent4cfcb4452a3278cfa775e247271053e82f238fb5 (diff)
downloadtangerine-wallet-browser-5126ddaf0c25d243c625adff82dc95273acf1291.tar
tangerine-wallet-browser-5126ddaf0c25d243c625adff82dc95273acf1291.tar.gz
tangerine-wallet-browser-5126ddaf0c25d243c625adff82dc95273acf1291.tar.bz2
tangerine-wallet-browser-5126ddaf0c25d243c625adff82dc95273acf1291.tar.lz
tangerine-wallet-browser-5126ddaf0c25d243c625adff82dc95273acf1291.tar.xz
tangerine-wallet-browser-5126ddaf0c25d243c625adff82dc95273acf1291.tar.zst
tangerine-wallet-browser-5126ddaf0c25d243c625adff82dc95273acf1291.zip
mascara - server - prepare to serve popup
Diffstat (limited to 'library')
-rw-r--r--library/server.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/library/server.js b/library/server.js
index 7c764a4a7..495aba914 100644
--- a/library/server.js
+++ b/library/server.js
@@ -19,8 +19,10 @@ iframeServer.get('/controller.js', function(req, res){
res.send(controllerBundle.latest)
})
-// serve static
+// serve background controller
iframeServer.use(express.static('./server'))
+// serve popup window
+// iframeServer.use('/popup', express.static('../dist/chrome'))
iframeServer.listen('9001')