phpbb/phpBB/adm/style/timezone.js
2021-05-26 08:58:25 +02:00

13 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