tsukuba-me
Version:
University of Tsukuba school life utilities. Manaba attend (atmnb) helper, and PaperCut U.T. uploader.
13 lines (12 loc) • 578 B
JavaScript
const links = document.querySelectorAll('link[rel="import"]')
// Import and add each page to the DOM
// Thanks: https://github.com/electron/electron-api-demos/blob/2a8c1f46b582b2762c2cf0afc7559082726255b5/assets/imports.js
Array.prototype.forEach.call(links, (link) => {
let template = link.import.querySelector('.task-template')
let clone = document.importNode(template.content, true)
if (link.href.match('nav.html')) {
document.querySelector('.header').appendChild(clone)
} else {
document.querySelector('.content').appendChild(clone)
}
})