mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-21 06:53:49 +02:00
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
(function($) { // Avoid conflicts with other libraries
|
|
|
|
$('#tz_date').change(function() {
|
|
phpbb.timezoneSwitchDate(false);
|
|
});
|
|
|
|
$(document).ready(
|
|
phpbb.timezoneEnableDateSelection
|
|
);
|
|
|
|
})(jQuery); // Avoid conflicts with other libraries
|