diff options
-rwxr-xr-x | async.php | 5 | ||||
-rwxr-xr-x | index.php | 5 | ||||
-rwxr-xr-x | static/bigpipe.js | 4 |
3 files changed, 2 insertions, 12 deletions
@@ -51,11 +51,6 @@ require_once 'include/pagelets.php'; .text{color:white;margin-bottom:30px;padding:40px;border-radius:4px;font-weight:600;text-align:center;border:4px solid black;}
.hidden{display:none;}
</style>
- <script>
- var globalExecution = function globalExecution(code) {
- window.execScript ? window.execScript(code) : window.eval.call(window, code);
- };
- </script>
<script src="static/bigpipe.js"></script>
<title>BigPipe Demo</title>
<!-- >>> [Additional code for the async function] -->
@@ -37,11 +37,6 @@ require_once 'include/pagelets.php'; body{max-width:1200px;margin:0 auto;}
.text{color:white;margin-bottom:30px;padding:40px;border-radius:4px;font-weight:600;text-align:center;border:4px solid black;}
</style>
- <script>
- var globalExecution = function globalExecution(code) {
- window.execScript ? window.execScript(code) : window.eval.call(window, code);
- };
- </script>
<script src="static/bigpipe.js"></script>
<title>BigPipe Demo</title>
</head>
diff --git a/static/bigpipe.js b/static/bigpipe.js index a27eec9..fa56d21 100755 --- a/static/bigpipe.js +++ b/static/bigpipe.js @@ -24,7 +24,7 @@ var BigPipe = (function() { execute: function(context, phase) {
context.phaseDoneJS[phase].forEach(function(code) {
try {
- globalExecution(code);
+ window.eval.call(window, code);
} catch(e) {
console.error("PhaseDoneJS: " + e);
}
@@ -215,7 +215,7 @@ var BigPipe = (function() { Pagelet.prototype.executeJSCode = function() {
this.JSCode.forEach(function(code) {
try {
- globalExecution(code);
+ window.eval.call(window, code);
} catch(e) {
console.error(this.ID + ": " + e);
}
|