Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Oct 4, 2013
1 parent bf64cf7 commit b2d2146
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examplejs/api/latest/example.js
Expand Up @@ -234,7 +234,7 @@ var ExampleJS = function (cfg) {
this._iframe.style.width = "100%";
document.body.appendChild(this._iframe);

this._iframe.src = (cfg.exampleJSHome || "http://xeolabs.github.io/examplejs") + "/index.html";
this._iframe.src = (cfg.exampleJSHome || "http://scenejs.org/examplejs") + "/index.html";

// True once connected
this._connected = false;
Expand Down
2 changes: 1 addition & 1 deletion examplejs/js/api/example.js
Expand Up @@ -16,7 +16,7 @@ var ExampleJS = function (cfg) {
// Option to use our own instance of the "in-the-cloud" instance
// This would be done if the client's container page is on HTTPS,
// where ExampleJS is served over HTTPS from GitHub
this._iframe.src = (cfg.exampleJSHome || "http://xeolabs.github.io/examplejs") + "/index.html";
this._iframe.src = (cfg.exampleJSHome || "http://scenejs.org/examplejs") + "/index.html";

// True once connected
this._connected = false;
Expand Down

0 comments on commit b2d2146

Please sign in to comment.