1
0
Fork 0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-27 12:29:38 +00:00
phpbb/phpBB/adm/style/timezone.js
2020-03-24 11:51:05 -10:00

13 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