added webpack

This commit is contained in:
Danny Coates 2017-08-06 19:32:07 -07:00
parent c91d24cd86
commit 9172af48fd
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
5 changed files with 2748 additions and 48 deletions

View file

@ -1,7 +1,7 @@
let links = [];
document.addEventListener('DOMContentLoaded', function() {
links = document.querySelectorAll('a:not([target])');
links = Array.from(document.querySelectorAll('a:not([target])'));
});
function setOpenInNewTab(bool) {