mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-16 04:19:41 +02:00
14 lines
276 B
JavaScript
14 lines
276 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
|