aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/timezone.js
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-01-04 22:46:12 +0100
committerMarc Alexander <admin@m-a-styles.de>2013-01-04 22:46:12 +0100
commitb5cc1ed683c1e8ca2e189e75e0e3302cc37c5fbf (patch)
tree9edd0fc7095203468e8269deb93808e3de79f740 /phpBB/styles/prosilver/template/timezone.js
parent46c33e08b5d46c5aafe963298367bd61cbadc5fd (diff)
downloadforums-b5cc1ed683c1e8ca2e189e75e0e3302cc37c5fbf.tar
forums-b5cc1ed683c1e8ca2e189e75e0e3302cc37c5fbf.tar.gz
forums-b5cc1ed683c1e8ca2e189e75e0e3302cc37c5fbf.tar.bz2
forums-b5cc1ed683c1e8ca2e189e75e0e3302cc37c5fbf.tar.xz
forums-b5cc1ed683c1e8ca2e189e75e0e3302cc37c5fbf.zip
[ticket/10949] Converted missing code to new JS coding guidelines
A few missing semi-colons were also added where needed. PHPBB3-10949
Diffstat (limited to 'phpBB/styles/prosilver/template/timezone.js')
-rw-r--r--phpBB/styles/prosilver/template/timezone.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/timezone.js b/phpBB/styles/prosilver/template/timezone.js
index da0a2b0bfd..af8206d12d 100644
--- a/phpBB/styles/prosilver/template/timezone.js
+++ b/phpBB/styles/prosilver/template/timezone.js
@@ -1,19 +1,19 @@
(function($) { // Avoid conflicts with other libraries
$('#tz_date').change(function() {
- phpbb.timezone_switch_date(false);
+ phpbb.timezoneSwitchDate(false);
});
$('#tz_select_date_suggest').click(function(){
- phpbb.timezone_preselect_select(true);
+ phpbb.timezonePreselectSelect(true);
});
$(document).ready(
- phpbb.timezone_enable_date_selection
+ phpbb.timezoneEnableDateSelection
);
$(document).ready(
- phpbb.timezone_preselect_select($('#tz_select_date_suggest').attr('data-is-registration') == 'true')
+ phpbb.timezonePreselectSelect($('#tz_select_date_suggest').attr('data-is-registration') == 'true')
);
})(jQuery); // Avoid conflicts with other libraries