1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00
Files
tabler/js/app/layout-manager.js
2019-07-08 19:40:55 +02:00

20 lines
335 B
JavaScript

'use strict';
class TablerLayoutManager {
static init() {
this.elem = document.getElementById('layout-manager');
if(this.elem) {
this.renderHtml();
}
}
static renderHtml() {
this.elem.innerHTML = 'test';
}
}
document.addEventListener("DOMContentLoaded", function() {
TablerLayoutManager.init();
});