mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 12:33:29 +01:00
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
(function($) { // Avoid conflicts with other libraries
|
|
|
|
$('#tz_date').change(function() {
|
|
phpbb.timezone_switch_date(false);
|
|
});
|
|
|
|
$(document).ready(
|
|
phpbb.timezone_enable_date_selection
|
|
);
|
|
|
|
})(jQuery); // Avoid conflicts with other libraries
|