File size: 440 Bytes
897b3f0
8d57073
 
6e6dab9
8d57073
897b3f0
 
8d57073
 
 
 
6e6dab9
1
2
3
4
5
6
7
8
9
10
11
12
13
import { ButtonsBinder } from "./components/buttons_binder.js";
import { InputsBinder } from "./components/inputs_binder.js";
import { CommonsLoader } from "./commons/commons_loader.js";

$(document).ready(function () {
    let buttons_binder = new ButtonsBinder();
    buttons_binder.bind();
    let inputs_binder = new InputsBinder();
    inputs_binder.bind();
    let commons_loader = new CommonsLoader();
    commons_loader.load();
});