mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-11 02:22:25 +03:00
14 lines
280 B
PHP
14 lines
280 B
PHP
<script>
|
|
window.vars = (function () {
|
|
const vars = <?= json_encode(script_vars()) ?>;
|
|
|
|
return (key) => {
|
|
if (!key) {
|
|
return vars;
|
|
}
|
|
|
|
return vars[key] || undefined;
|
|
};
|
|
})();
|
|
</script>
|
|
|