update polymer
This commit is contained in:
parent
568fabb9ca
commit
319d838d6e
48 changed files with 3045 additions and 2348 deletions
16
dashboard-ui/thirdparty/viblast/worker.html
vendored
Normal file
16
dashboard-ui/thirdparty/viblast/worker.html
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<script>
|
||||
var worker = new Worker(decodeURIComponent(window.location.search.substring(1)));
|
||||
|
||||
window.onmessage = function(evt) {
|
||||
worker.postMessage(evt.data);
|
||||
}
|
||||
|
||||
worker.onmessage = function(evt) {
|
||||
window.parent.postMessage(evt.data, "*");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue