ro
eda377aba3
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
10 lines
151 B
JavaScript
10 lines
151 B
JavaScript
import Settings from './controllers/SettingsIndex.js';
|
|
|
|
document.addEventListener(
|
|
'DOMContentLoaded',
|
|
function () {
|
|
new Settings();
|
|
},
|
|
false
|
|
);
|