Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
None
-
None
Description
Hello,
i use Apache Shindig with https (nightly build from june) and an security error occurred. I must patched my version:
old:
gadgets.Container = function() {
this.gadgets_ = {};
this.parentUrl_ = 'http://' + document.location.host;
new:
gadgets.Container = function() {
this.gadgets_ = {};
this.parentUrl_ = document.location.href + '://' + document.location.host;
thx
Arn