mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- More AJAX support (couple of bug fixes, added timing for AJAX calls, added support for adding AJAX scripts to a page once and once only)
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3352 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -39,6 +39,7 @@ public class ClientConfigElement extends ConfigElementAdapter
|
||||
private String helpUrl = null;
|
||||
private String editLinkType = "http";
|
||||
private String homeSpacePermission = null;
|
||||
private boolean ajaxEnabled = false;
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
@@ -329,4 +330,22 @@ public class ClientConfigElement extends ConfigElementAdapter
|
||||
{
|
||||
this.homeSpacePermission = homeSpacePermission;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns whether AJAX support is enabled in the client
|
||||
*/
|
||||
public boolean isAjaxEnabled()
|
||||
{
|
||||
return this.ajaxEnabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets whether AJAX support is enabled in the client
|
||||
*
|
||||
* @param ajaxEnabled
|
||||
*/
|
||||
/*package*/ void setAjaxEnabled(boolean ajaxEnabled)
|
||||
{
|
||||
this.ajaxEnabled = ajaxEnabled;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user