| 1234567891011121314151617181920212223242526 |
- import './PDFEngine.css';
- const initialize = () => {
- document.getElementsByTagName('canvas').forEach(element => element.setAttribute('map','map1'));
- document.getElementsByClassName("col-sm-6").forEach(e => e.setAttribute("mapiranje", "map1"));
- const paragraf = document.createElement('p');
- paragraf.innerHTML = "hajde radi opet";
- document.querySelector('body').appendChild(paragraf);
- }
- const transform = () => {
- document.querySelectorAll('[map="map1"]')[1].style.display = "none";
- let maliDivovi = document.querySelectorAll('[mapiranje="map1"]');
- maliDivovi.forEach(el => { el.className = "col-sm-12" });
- let p = document.createElement('p');
- p.innerHTML = 'mozda radi';
- document.querySelector('body').appendChild(p);
- document.querySelector('body').style.backgroundColor = 'red';
- }
-
-
- const PDFEngine = () =>
- {
- initialize();
- transform();
- }
-
- export default PDFEngine;
|