mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 20:38:52 +00:00
11 lines
239 B
JavaScript
11 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
|