mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 00:07:44 +02:00
[ticket/16414] setup xo for use in future
PHPBB3-16414
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
/* global phpbb */
|
||||
|
||||
/**
|
||||
* phpBB3 ACP functions
|
||||
*/
|
||||
|
@@ -1,3 +1,5 @@
|
||||
/* global phpbb */
|
||||
|
||||
/**
|
||||
* Hide and show all checkboxes
|
||||
* status = true (show boxes), false (hide boxes)
|
||||
|
@@ -1,13 +1,13 @@
|
||||
(function($) { // Avoid conflicts with other libraries
|
||||
/* global phpbb */
|
||||
|
||||
"use strict";
|
||||
(function ($) { // Avoid conflicts with other libraries
|
||||
'use strict';
|
||||
|
||||
$('#tz_date').change(function() {
|
||||
phpbb.timezoneSwitchDate(false);
|
||||
});
|
||||
|
||||
$(document).ready(
|
||||
phpbb.timezoneEnableDateSelection
|
||||
);
|
||||
$('#tz_date').change(() => {
|
||||
phpbb.timezoneSwitchDate(false);
|
||||
});
|
||||
|
||||
$(document).ready(
|
||||
phpbb.timezoneEnableDateSelection,
|
||||
);
|
||||
})(jQuery); // Avoid conflicts with other libraries
|
||||
|
@@ -1,3 +1,5 @@
|
||||
/* global phpbb */
|
||||
|
||||
/*
|
||||
javascript for Bubble Tooltips by Alessandro Fulciniti
|
||||
- http://pro.html.it - http://web-graphics.com
|
||||
|
Reference in New Issue
Block a user