2012-06-19 19:08:53 +02:00
|
|
|
(function($) { // Avoid conflicts with other libraries
|
2012-06-17 16:54:12 +02:00
|
|
|
|
2013-01-10 11:14:07 +01:00
|
|
|
"use strict";
|
|
|
|
|
2012-06-19 19:08:53 +02:00
|
|
|
$('#tz_date').change(function() {
|
2013-01-04 22:46:12 +01:00
|
|
|
phpbb.timezoneSwitchDate(false);
|
2012-06-19 19:08:53 +02:00
|
|
|
});
|
2012-06-17 16:54:12 +02:00
|
|
|
|
2012-06-19 19:08:53 +02:00
|
|
|
$(document).ready(
|
2013-01-04 22:46:12 +01:00
|
|
|
phpbb.timezoneEnableDateSelection
|
2012-06-19 19:08:53 +02:00
|
|
|
);
|
2012-06-12 19:54:26 +02:00
|
|
|
|
2012-06-19 19:08:53 +02:00
|
|
|
})(jQuery); // Avoid conflicts with other libraries
|