summaryrefslogtreecommitdiff
path: root/web-ui/app/js/sandbox.js
diff options
context:
space:
mode:
authorChristoph <c@kluenter.de>2016-03-09 15:37:18 +0100
committerChristoph <c@kluenter.de>2016-03-09 15:37:18 +0100
commit3994188a0e4d9468518132f179eb56fab7760fbe (patch)
tree224e5d536b9a6c4859671b2cff57f1f60236ef9f /web-ui/app/js/sandbox.js
parent281f88ba668e38883e822ea5bd96134ad3a3aa6c (diff)
parent23b175742f20d96e5b5d3d9cfcc0ed7067197f92 (diff)
Merge pull request #636 from pixelated/dev/sandbox
Dev/sandbox
Diffstat (limited to 'web-ui/app/js/sandbox.js')
-rw-r--r--web-ui/app/js/sandbox.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/web-ui/app/js/sandbox.js b/web-ui/app/js/sandbox.js
new file mode 100644
index 00000000..f9e708d6
--- /dev/null
+++ b/web-ui/app/js/sandbox.js
@@ -0,0 +1,9 @@
+(function () {
+ 'use strict';
+
+ window.onmessage = function (e) {
+ if (e.data.html) {
+ document.body.innerHTML = e.data.html;
+ }
+ };
+})();