mirror of
https://github.com/tabler/tabler.git
synced 2025-12-22 01:44:25 +04:00
20 lines
335 B
JavaScript
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();
|
|
});
|