Release of v5.0.0-beta2

Add view list and single name fix. Add component code name fix. Add reset list of powers.
This commit is contained in:
2024-04-09 13:54:59 +02:00
parent b988010b79
commit b2c9daa455
50 changed files with 3747 additions and 3722 deletions

View File

@ -96,6 +96,21 @@ defined('_JEXEC') or die;
<script type="text/javascript">
// #jform_location listeners for location_vvvvwei function
jQuery('#jform_location').on('keyup',function()
{
var location_vvvvwei = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwei(location_vvvvwei);
});
jQuery('#adminForm').on('change', '#jform_location',function (e)
{
e.preventDefault();
var location_vvvvwei = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwei(location_vvvvwei);
});
// #jform_location listeners for location_vvvvwej function
jQuery('#jform_location').on('keyup',function()
{
@ -111,18 +126,18 @@ jQuery('#adminForm').on('change', '#jform_location',function (e)
});
// #jform_location listeners for location_vvvvwek function
jQuery('#jform_location').on('keyup',function()
// #jform_type listeners for type_vvvvwek function
jQuery('#jform_type').on('keyup',function()
{
var location_vvvvwek = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwek(location_vvvvwek);
var type_vvvvwek = jQuery("#jform_type").val();
vvvvwek(type_vvvvwek);
});
jQuery('#adminForm').on('change', '#jform_location',function (e)
jQuery('#adminForm').on('change', '#jform_type',function (e)
{
e.preventDefault();
var location_vvvvwek = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwek(location_vvvvwek);
var type_vvvvwek = jQuery("#jform_type").val();
vvvvwek(type_vvvvwek);
});
@ -156,33 +171,18 @@ jQuery('#adminForm').on('change', '#jform_type',function (e)
});
// #jform_type listeners for type_vvvvwen function
jQuery('#jform_type').on('keyup',function()
{
var type_vvvvwen = jQuery("#jform_type").val();
vvvvwen(type_vvvvwen);
});
jQuery('#adminForm').on('change', '#jform_type',function (e)
{
e.preventDefault();
var type_vvvvwen = jQuery("#jform_type").val();
vvvvwen(type_vvvvwen);
});
// #jform_target listeners for target_vvvvweo function
// #jform_target listeners for target_vvvvwen function
jQuery('#jform_target').on('keyup',function()
{
var target_vvvvweo = jQuery("#jform_target input[type='radio']:checked").val();
vvvvweo(target_vvvvweo);
var target_vvvvwen = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwen(target_vvvvwen);
});
jQuery('#adminForm').on('change', '#jform_target',function (e)
{
e.preventDefault();
var target_vvvvweo = jQuery("#jform_target input[type='radio']:checked").val();
vvvvweo(target_vvvvweo);
var target_vvvvwen = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwen(target_vvvvwen);
});