blob: b5e27c907c5c898e24a239f7fe6dee9927b61d67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(function($) { // Avoid conflicts with other libraries
"use strict";
$('#tz_date').change(function() {
phpbb.timezoneSwitchDate(false);
});
$(document).ready(
phpbb.timezoneEnableDateSelection
);
})(jQuery); // Avoid conflicts with other libraries
|