updated gcube context's override of the XMLHttpRequest's send method to support EDISON case

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/liferay62-plugins/d4science-responsive-theme@141824 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2017-01-26 15:45:55 +00:00
parent 3436bff364
commit 83ff8b44fd
3 changed files with 23 additions and 23 deletions

View File

@ -11,7 +11,7 @@
<artifactId>d4science-responsive-theme</artifactId>
<packaging>war</packaging>
<name>d4science-responsive-theme Theme</name>
<version>6.3.1-SNAPSHOT</version>
<version>6.3.2-SNAPSHOT</version>
<build>
<plugins>
<plugin>

View File

@ -1,6 +1,6 @@
name=d4science-responsive-theme
module-group-id=liferay
module-incremental-version=5
module-incremental-version=6
tags=
short-description=
change-log=

View File

@ -17,15 +17,15 @@ function injectClientContext() {
groupId = Liferay.ThemeDisplay.getScopeGroupId();
//console.log('Not logged in, injecting groupId only');
}
XMLHttpRequest.prototype.realSend = XMLHttpRequest.prototype.send;
var newSend = function(vData) {
//attach the 3 header params in all the XHR sends
(function(send) {
XMLHttpRequest.prototype.send = function(data) {
this.setRequestHeader("gcube-userId", userId);
this.setRequestHeader("gcube-vreid", groupId);
this.setRequestHeader("gcube-request-url", location.href);
this.realSend(vData);
send.call(this, data);
};
XMLHttpRequest.prototype.send = newSend;
})(XMLHttpRequest.prototype.send);
}
}
/*