Added lots more demo data on Github to help demonstrate the ease of use. Adding feature to insert custom scripting during install. Adding easy issue tracking, and member notice board. Many bug fixes, to the compiler and general improvements.

This commit is contained in:
2016-10-24 00:48:26 +02:00
parent ecb3ab5af9
commit 33f3bb5652
419 changed files with 9574 additions and 5291 deletions

View File

@ -9,13 +9,12 @@
|_|
/-------------------------------------------------------------------------------------------------------------------------------/
@version 2.1.21
@build 11th September, 2016
@version 2.2.0
@build 23rd October, 2016
@created 30th April, 2015
@package Component Builder
@subpackage template.js
@author Llewellyn van der Merwe <https://www.vdm.io/joomla-component-builder>
@my wife Roline van der Merwe <http://www.vdm.io/>
@author Llewellyn van der Merwe <https://www.vdm.io/joomla-component-builder>
@copyright Copyright (C) 2015. All Rights Reserved
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
@ -24,42 +23,42 @@
/-----------------------------------------------------------------------------------------------------------------------------*/
// Some Global Values
jform_vvvvvycvye_required = false;
jform_vvvvvyhvyj_required = false;
// Initial Script
jQuery(document).ready(function()
{
var add_php_view_vvvvvyc = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvyc(add_php_view_vvvvvyc);
var add_php_view_vvvvvyh = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvyh(add_php_view_vvvvvyh);
});
// the vvvvvyc function
function vvvvvyc(add_php_view_vvvvvyc)
// the vvvvvyh function
function vvvvvyh(add_php_view_vvvvvyh)
{
// set the function logic
if (add_php_view_vvvvvyc == 1)
if (add_php_view_vvvvvyh == 1)
{
jQuery('#jform_php_view').closest('.control-group').show();
if (jform_vvvvvycvye_required)
if (jform_vvvvvyhvyj_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_vvvvvycvye_required = false;
jform_vvvvvyhvyj_required = false;
}
}
else
{
jQuery('#jform_php_view').closest('.control-group').hide();
if (!jform_vvvvvycvye_required)
if (!jform_vvvvvyhvyj_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_vvvvvycvye_required = true;
jform_vvvvvyhvyj_required = true;
}
}
}