Index: third_party/polymer/v0_8/components/promise-polyfill/promise-polyfill-lite.html |
diff --git a/third_party/polymer/v0_8/components/promise-polyfill/promise-polyfill-lite.html b/third_party/polymer/v0_8/components/promise-polyfill/promise-polyfill-lite.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..87f5e75bf51a841a775649df81b68a00fbc3c4a9 |
--- /dev/null |
+++ b/third_party/polymer/v0_8/components/promise-polyfill/promise-polyfill-lite.html |
@@ -0,0 +1,7 @@ |
+<link rel="import" href="../polymer/polymer.html"> |
+<script src='./Promise.js'></script> |
+<script> |
+if (!window.Promise) { |
+ window.Promise = MakePromise(Polymer.Base.async); |
+} |
+</script> |