-
Type:
Bug
-
Status: Resolved
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.0.0
-
Component/s: Javascript
-
Labels:None
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