aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/subsilver2
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2013-01-08 16:36:35 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2013-01-08 16:36:35 -0500
commitb96a2fce28cc79878b074534e27f0fa6723989f0 (patch)
treee55a7870d90d60f4cd4f0fffb47a8a5b71eb4ca3 /phpBB/styles/subsilver2
parentef8cc04dc81391f606ccd52f4180fa3cf585924c (diff)
parentbe7719443587d85402813211d78d7c562a93518b (diff)
downloadforums-b96a2fce28cc79878b074534e27f0fa6723989f0.tar
forums-b96a2fce28cc79878b074534e27f0fa6723989f0.tar.gz
forums-b96a2fce28cc79878b074534e27f0fa6723989f0.tar.bz2
forums-b96a2fce28cc79878b074534e27f0fa6723989f0.tar.xz
forums-b96a2fce28cc79878b074534e27f0fa6723989f0.zip
Merge PR #1178 branch 'marc1706/ticket/10949' into develop
# By Marc Alexander (2) and Callum Macrae (1) # Via Marc Alexander * marc1706/ticket/10949: [ticket/10949] Remove not needed comma [ticket/10949] Converted missing code to new JS coding guidelines [ticket/10949] Converted AJAX coding standards to new guidelines.
Diffstat (limited to 'phpBB/styles/subsilver2')
-rw-r--r--phpBB/styles/subsilver2/template/timezone.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/subsilver2/template/timezone.js b/phpBB/styles/subsilver2/template/timezone.js
index da0a2b0bfd..af8206d12d 100644
--- a/phpBB/styles/subsilver2/template/timezone.js
+++ b/phpBB/styles/subsilver2/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