with the setting page set up, now the the settings api can be added, beginning with the ability to render all files from settings. the base settings api class is set up, so now the rest of the methods can be added
9 lines
151 B
JavaScript
9 lines
151 B
JavaScript
import Settings from './controllers/SettingsIndex.js';
|
|
|
|
document.addEventListener(
|
|
'DOMContentLoaded',
|
|
function () {
|
|
new Settings();
|
|
},
|
|
false
|
|
);
|