diff options
| author | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-07-24 12:22:49 +0200 | 
|---|---|---|
| committer | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-07-24 12:22:49 +0200 | 
| commit | 0f332e6564ed67ef7eb4d715ce3bcb5ff54c50cf (patch) | |
| tree | 00cecb80224872c25e712a59b417c5f1dff240cb /framework/Web/Javascripts/source | |
| parent | 3c208455c7775838e795909923536a7de13d9c5c (diff) | |
Upgrade to newly released 3.2.23.2.2
Diffstat (limited to 'framework/Web/Javascripts/source')
| -rw-r--r-- | framework/Web/Javascripts/source/prado/prado.js | 2 | ||||
| -rw-r--r-- | framework/Web/Javascripts/source/prado/scriptaculous-adapter.js | 5 | 
2 files changed, 5 insertions, 2 deletions
diff --git a/framework/Web/Javascripts/source/prado/prado.js b/framework/Web/Javascripts/source/prado/prado.js index 36a08426..b827b125 100644 --- a/framework/Web/Javascripts/source/prado/prado.js +++ b/framework/Web/Javascripts/source/prado/prado.js @@ -8,7 +8,7 @@ var Prado =  	 * Version of Prado clientscripts  	 * @var Version  	 */ -	Version: '3.2.1', +	Version: '3.2.2',  	/**  	 * Registry for Prado components diff --git a/framework/Web/Javascripts/source/prado/scriptaculous-adapter.js b/framework/Web/Javascripts/source/prado/scriptaculous-adapter.js index 3c186d3e..febe6ad9 100644 --- a/framework/Web/Javascripts/source/prado/scriptaculous-adapter.js +++ b/framework/Web/Javascripts/source/prado/scriptaculous-adapter.js @@ -202,6 +202,9 @@ Prado.PostBack = function(event,options)  	/*if(options['StopEvent']) */  		Event.stop(event);  	Event.fireEvent(form,"submit"); + +	$('PRADO_POSTBACK_TARGET').value = ''; +	$('PRADO_POSTBACK_PARAMETER').value = '';  };  /** @@ -283,7 +286,7 @@ Prado.Element =  	{  		var el = $(element);  		if(!el) return; -		if((attribute == "disabled" || attribute == "multiple" || attribute == "readonly") && value==false) +		if((attribute == "disabled" || attribute == "multiple" || attribute == "readonly" || attribute == "href") && value==false)  			el.removeAttribute(attribute);  		else if(attribute.match(/^on/i)) //event methods  		{  | 
