ACC SHELL

Path : /srv/www/vhosts/marevva/crossroadsfoundation/admin/js/
File Upload :
Current File : /srv/www/vhosts/marevva/crossroadsfoundation/admin/js/admin.js

if(typeof String.prototype.trim !== 'function')
{
  String.prototype.trim = function()
  {
    return this.replace(/^\s+|\s+$/g, ''); 
  }
}

//--------------------------------------------------------------------------------

$(document).ready(function() 
{
	$("[id^=menuItem-]").hover(
		function()
		{
			$("> div", this).show();
		},
		function()
		{
			$("> div", this).hide();
		}
	);
});

//--------------------------------------------------------------------------------

function IncludeJavaScript(jsFile)
{
	$('<script type="text/javascript" src="' + jsFile + '"></script>').appendTo('head');
}

//--------------------------------------------------------------------------------

function updateDataEdit( params2 ) 
{
	toggleLoadingDataEditForm();
	
	destroyAllEditors();
	
	window.location = params2;
}



ACC SHELL 2018