Removing repetable fields from site view, custom admin view, and admin view. Also updated the compiler, removed permissions on fields to speedup page load in admin and joomla component views

This commit is contained in:
2017-10-12 02:50:14 +02:00
parent c484306d21
commit 39e1e5f078
331 changed files with 4920 additions and 8617 deletions

View File

@ -127,21 +127,6 @@ $componentParams = JComponentHelper::getParams('com_componentbuilder');
<script type="text/javascript">
// #jform_location listeners for location_vvvvwae function
jQuery('#jform_location').on('keyup',function()
{
var location_vvvvwae = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwae(location_vvvvwae);
});
jQuery('#adminForm').on('change', '#jform_location',function (e)
{
e.preventDefault();
var location_vvvvwae = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwae(location_vvvvwae);
});
// #jform_location listeners for location_vvvvwaf function
jQuery('#jform_location').on('keyup',function()
{
@ -157,18 +142,18 @@ jQuery('#adminForm').on('change', '#jform_location',function (e)
});
// #jform_type listeners for type_vvvvwag function
jQuery('#jform_type').on('keyup',function()
// #jform_location listeners for location_vvvvwag function
jQuery('#jform_location').on('keyup',function()
{
var type_vvvvwag = jQuery("#jform_type").val();
vvvvwag(type_vvvvwag);
var location_vvvvwag = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwag(location_vvvvwag);
});
jQuery('#adminForm').on('change', '#jform_type',function (e)
jQuery('#adminForm').on('change', '#jform_location',function (e)
{
e.preventDefault();
var type_vvvvwag = jQuery("#jform_type").val();
vvvvwag(type_vvvvwag);
var location_vvvvwag = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwag(location_vvvvwag);
});
@ -202,18 +187,33 @@ jQuery('#adminForm').on('change', '#jform_type',function (e)
});
// #jform_target listeners for target_vvvvwaj function
// #jform_type listeners for type_vvvvwaj function
jQuery('#jform_type').on('keyup',function()
{
var type_vvvvwaj = jQuery("#jform_type").val();
vvvvwaj(type_vvvvwaj);
});
jQuery('#adminForm').on('change', '#jform_type',function (e)
{
e.preventDefault();
var type_vvvvwaj = jQuery("#jform_type").val();
vvvvwaj(type_vvvvwaj);
});
// #jform_target listeners for target_vvvvwak function
jQuery('#jform_target').on('keyup',function()
{
var target_vvvvwaj = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwaj(target_vvvvwaj);
var target_vvvvwak = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwak(target_vvvvwak);
});
jQuery('#adminForm').on('change', '#jform_target',function (e)
{
e.preventDefault();
var target_vvvvwaj = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwaj(target_vvvvwaj);
var target_vvvvwak = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwak(target_vvvvwak);
});