Fix linter warnings except for /transforms

This commit is contained in:
Ludwig Schubert
2017-08-09 16:47:35 -07:00
parent 11eda0fc49
commit 27fbe9a932
42 changed files with 460 additions and 478 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import code from './hover-box.txt';
export default function(dom) {
let s = dom.createElement("script");
let s = dom.createElement('script');
s.textContent = code;
dom.querySelector("body").appendChild(s);
dom.querySelector('body').appendChild(s);
}