diff options
| author | Oleg Pudeyev <oleg@bsdpower.com> | 2013-01-08 16:36:35 -0500 |
|---|---|---|
| committer | Oleg Pudeyev <oleg@bsdpower.com> | 2013-01-08 16:36:35 -0500 |
| commit | b96a2fce28cc79878b074534e27f0fa6723989f0 (patch) | |
| tree | e55a7870d90d60f4cd4f0fffb47a8a5b71eb4ca3 /phpBB/styles/subsilver2 | |
| parent | ef8cc04dc81391f606ccd52f4180fa3cf585924c (diff) | |
| parent | be7719443587d85402813211d78d7c562a93518b (diff) | |
| download | forums-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.js | 8 |
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 |
