summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2016-09-06 10:11:48 -0400
committerKali Kaneko (leap communications) <kali@leap.se>2016-09-06 13:55:19 -0400
commitbf6e00768c0419f48bea91dea75f9af503c48c3d (patch)
tree506b9727129dc96d981b3e08cba07b6fbb0e5118
parent65c2c18653feb5f6485710e9656b19e368bb2826 (diff)
[bug] fix import
-rw-r--r--www/Makefile3
-rw-r--r--www/app/lib/bitmask.js4
2 files changed, 5 insertions, 2 deletions
diff --git a/www/Makefile b/www/Makefile
index e3a791d..5075a07 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -21,6 +21,9 @@ pydist-clean:
rm -rf build dist
rm -rf leap/bitmask_www/*
+uninstall:
+ pip uninstall leap.bitmask_www
+
all: clean build pydist
.PHONY: clean build install all
diff --git a/www/app/lib/bitmask.js b/www/app/lib/bitmask.js
index af019b1..5bd684b 100644
--- a/www/app/lib/bitmask.js
+++ b/www/app/lib/bitmask.js
@@ -28,7 +28,7 @@
* strings.
*/
-import Promise from 'promise'
+import "babel-polyfill";
var bitmask = function(){
var event_handlers = {};
@@ -259,4 +259,4 @@ var bitmask = function(){
};
}();
-module.exports = bitmask \ No newline at end of file
+module.exports = bitmask