summaryrefslogtreecommitdiff
path: root/web-ui/app/js/sandbox.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/sandbox.js')
-rw-r--r--web-ui/app/js/sandbox.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/web-ui/app/js/sandbox.js b/web-ui/app/js/sandbox.js
deleted file mode 100644
index 33b16ea4..00000000
--- a/web-ui/app/js/sandbox.js
+++ /dev/null
@@ -1,11 +0,0 @@
-(function () {
- 'use strict';
-
- window.onmessage = function (e) {
- if (e.data.html) {
- document.body.innerHTML = e.data.html;
- var mainWindow = e.source;
- mainWindow.postMessage('data ok', e.origin);
- }
- };
-})();