mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V2.2 to HEAD (V2.1 sourced)
7127: Merged V2.1 to V2.2 7118: Fixed overly-eager applicability of patches brought forward from previous releases 7119: Fixed SQL script patch schema numbering 7245: Merged V2.1 to V2.2: 7238: Serializes alfresco->alfresco deployments to the same target. 7241: Added AVM index tracking into the built-in, cron-controlled config. 7242: More DEBUG messages for index tracking, where required. 7243: Fix for url encoding issue as found by by Ishii Akinori 7372: Merged V2.1 to V2.2 7289: Fix for AWC-1542 where utf-8 characters not displaying correctly in RSS feed output 7300: Bumped up session size management values to reduce potential issues with mix-style, shorter transactions. 7303: Portlet updates for MSIE problems in Liferay. 7304: Added the <cifs-url-suffix>. AWC-1671. 7317: Fix OO shutdown 7319: Catch for raising rule executions using null NodeRefs. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7374 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -18,7 +18,7 @@ var MyDocs = {
|
||||
{
|
||||
$('docPanelOverlay').setStyle('opacity', 0);
|
||||
// show AJAX loading overlay
|
||||
$('docPanelOverlayAjax').setStyle('visibility', 'visible');
|
||||
$('docPanelOverlayAjax').setStyle('display', 'block');
|
||||
$('docPanel').setStyle('visibility', 'hidden');
|
||||
|
||||
var messagePanel = $('docMessagePanel');
|
||||
@@ -48,7 +48,7 @@ var MyDocs = {
|
||||
$('docPanel').setHTML("Sorry, data currently unavailable.");
|
||||
|
||||
// hide the ajax wait panel and show the main doc panel
|
||||
$('docPanelOverlayAjax').setStyle('visibility', 'hidden');
|
||||
$('docPanelOverlayAjax').setStyle('display', 'none');
|
||||
$('docPanel').setStyle('visibility', 'visible');
|
||||
}
|
||||
}
|
||||
@@ -61,7 +61,7 @@ var MyDocs = {
|
||||
MyDocs.parseDocPanels();
|
||||
// hide the ajax wait panel and show the main doc panel
|
||||
$('docPanel').setStyle('visibility', 'visible');
|
||||
$('docPanelOverlayAjax').setStyle('visibility', 'hidden');
|
||||
$('docPanelOverlayAjax').setStyle('display', 'none');
|
||||
|
||||
if (MyDocs.postInit)
|
||||
{
|
||||
@@ -741,7 +741,7 @@ var MyDocs = {
|
||||
var docPanel = $('docPanel');
|
||||
docPanel.setStyle('visibility', 'hidden');
|
||||
// show the ajax wait panel
|
||||
$('docPanelOverlayAjax').setStyle('visibility', 'visible');
|
||||
$('docPanelOverlayAjax').setStyle('display', 'block');
|
||||
|
||||
// Stop all the animation effects
|
||||
MyDocs.FxAll.each(function(fx, i)
|
||||
|
Reference in New Issue
Block a user