Re3gistry/public_html/js-ecl-v2/app_init.js
2023-08-31 09:57:49 +02:00

24 lines
405 B
JavaScript

"use strict";
/// *** App initialization scripts ***///
// ** Events handlers ** //
// ** Ready init handlers ** //
$(document).ready(function () {
// Processing the URI
processUri();
//Fill langauge selector on init
fillLanguageTable();
// Initialization of the localization system
initLocalization();
// Binding common events
bindCommonEvents();
});