remove import comments

This commit is contained in:
iampeterbanjo
2016-11-19 05:34:07 +00:00
parent c0f43dcc54
commit 6c4e7c8bc0
2 changed files with 2 additions and 6 deletions

View File

@@ -1,5 +1,4 @@
/* exported getUsefulContents */
// we cant use export here
function getUsefulContents(callback) {
callback('Hello World');
}
}

View File

@@ -1,7 +1,4 @@
/* global getUsefulContents */
// not supported in Firefox
// import { getUsefulContents } from "file";
function start() {
getUsefulContents(data => {
var display = document.getElementById('display');
@@ -10,4 +7,4 @@ function start() {
});
}
document.addEventListener('DOMContentLoaded', start);
document.addEventListener('DOMContentLoaded', start);