Added the email field type to resolve gh-283. Fixed the CSS inclution error to resolve gh-278. Added the option to add sql_uninstall dump value to a component. Did some class formating on the compiler.

This commit is contained in:
2018-05-11 06:08:14 +02:00
parent 476a0c525a
commit e04db1b5b2
51 changed files with 3782 additions and 3640 deletions

View File

@ -23,42 +23,42 @@
/-----------------------------------------------------------------------------------------------------------------------------*/
// Some Global Values
jform_vvvvvyyvys_required = false;
jform_vvvvvyzvyt_required = false;
// Initial Script
jQuery(document).ready(function()
{
var add_php_view_vvvvvyy = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvyy(add_php_view_vvvvvyy);
var add_php_view_vvvvvyz = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvyz(add_php_view_vvvvvyz);
});
// the vvvvvyy function
function vvvvvyy(add_php_view_vvvvvyy)
// the vvvvvyz function
function vvvvvyz(add_php_view_vvvvvyz)
{
// set the function logic
if (add_php_view_vvvvvyy == 1)
if (add_php_view_vvvvvyz == 1)
{
jQuery('#jform_php_view').closest('.control-group').show();
if (jform_vvvvvyyvys_required)
if (jform_vvvvvyzvyt_required)
{
updateFieldRequired('php_view',0);
jQuery('#jform_php_view').prop('required','required');
jQuery('#jform_php_view').attr('aria-required',true);
jQuery('#jform_php_view').addClass('required');
jform_vvvvvyyvys_required = false;
jform_vvvvvyzvyt_required = false;
}
}
else
{
jQuery('#jform_php_view').closest('.control-group').hide();
if (!jform_vvvvvyyvys_required)
if (!jform_vvvvvyzvyt_required)
{
updateFieldRequired('php_view',1);
jQuery('#jform_php_view').removeAttr('required');
jQuery('#jform_php_view').removeAttr('aria-required');
jQuery('#jform_php_view').removeClass('required');
jform_vvvvvyyvys_required = true;
jform_vvvvvyzvyt_required = true;
}
}
}