update polymer

This commit is contained in:
Luke Pulverenti 2015-07-09 23:00:03 -04:00
parent 568fabb9ca
commit 319d838d6e
48 changed files with 3045 additions and 2348 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View 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>