Author: ssievers
Date: Tue Apr 9 13:32:31 2013
New Revision: 1466023
URL: http://svn.apache.org/r1466023
Log:
Fixing a reference error for "undef".
Modified:
shindig/trunk/content/samplecontainer/examples/ContainerGadgetDomainTest.xml
Modified:
shindig/trunk/content/samplecontainer/examples/ContainerGadgetDomainTest.xml
URL:
http://svn.apache.org/viewvc/shindig/trunk/content/samplecontainer/examples/ContainerGadgetDomainTest.xml?rev=1466023&r1=1466022&r2=1466023&view=diff
==============================================================================
---
shindig/trunk/content/samplecontainer/examples/ContainerGadgetDomainTest.xml
(original)
+++
shindig/trunk/content/samplecontainer/examples/ContainerGadgetDomainTest.xml
Tue Apr 9 13:32:31 2013
@@ -56,7 +56,8 @@
expect(gadgets.config.get()['core.io'].proxyUrl).not.toContain('%host%');
});
- var parentLoc = undef;
+ var undef,
+ parentLoc = undef;
it("cannot access the parent window", function() {
try {
parentLoc = window.parent.location.href;