-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
Faster loading and makes it easier to deploy the app in a disconnected environment.
- Loading branch information
There are no files selected for viewing
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<html><head><script>isLoaded = true;</script></head><body></body></html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
|
||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
<head> | ||
<title></title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<script type="text/javascript"> | ||
// <!-- | ||
var noInit = false; | ||
|
||
function init(){ | ||
if(noInit){ return; } | ||
var hasParentDojo = false; | ||
try{ | ||
hasParentDojo = window.parent != window && window.parent["dojo"]; | ||
}catch(e){ | ||
alert("Initializing iframe_history.html failed. If you are using a cross-domain Dojo build," | ||
+ " please save iframe_history.html to your domain and set djConfig.dojoIframeHistoryUrl" | ||
+ " to the path on your domain to iframe_history.html"); | ||
throw e; | ||
} | ||
|
||
if(hasParentDojo){ | ||
//Set the page title so IE history shows up with a somewhat correct name. | ||
document.title = window.parent.document.title; | ||
|
||
//Notify parent that we are loaded. | ||
var pdj = window.parent.dojo; | ||
if(pdj["back"]){ | ||
pdj.back._iframeLoaded(null, window.location); | ||
} | ||
} | ||
|
||
} | ||
// --> | ||
</script> | ||
</head> | ||
<body onload="try{ init(); }catch(e){ alert(e); }"> | ||
<h4>The Dojo Toolkit -- iframe_history.html</h4> | ||
|
||
<p>This file is used in Dojo's back/fwd button management.</p> | ||
</body> | ||
</html> |