You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Engine_Rebuild/src/assets/pages/scripts/index_app.js

11 lines
349 B
JavaScript

const path = require('path');
const factory = require(path.join(appDir, 'viewFactory'))
function loadDocuments() {
let container = document.querySelector("#container");
let fileName = "voicemail-and-vacation-responder.pdf";
factory.buildFileCard(fileName, container, true)
factory.buildDefaultWebCards(container)
}
loadDocuments();