1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-17 04:51:35 +02:00
php-phpbb/phpBB/adm/style/timezone.js
2021-05-26 08:58:25 +02:00

14 lines
275 B
JavaScript

/* global phpbb */
(function($) { // Avoid conflicts with other libraries
'use strict';
$('#tz_date').change(() => {
phpbb.timezoneSwitchDate(false);
});
$(document).ready(
phpbb.timezoneEnableDateSelection,
);
})(jQuery); // Avoid conflicts with other libraries