Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2409)

Unified Diff: src/site/docs/tutorials/indexeddb/examples/count_down/web/packages/polymer/polymer.html

Issue 275613002: Update polymer tutorial; make directory paths match new sample structure (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/site/docs/tutorials/indexeddb/examples/count_down/web/packages/polymer/polymer.html
diff --git a/src/site/docs/tutorials/indexeddb/examples/count_down/web/packages/polymer/polymer.html b/src/site/docs/tutorials/indexeddb/examples/count_down/web/packages/polymer/polymer.html
new file mode 100644
index 0000000000000000000000000000000000000000..5cbaf7930cf0eeba0d0f2461a5515da01a8134df
--- /dev/null
+++ b/src/site/docs/tutorials/indexeddb/examples/count_down/web/packages/polymer/polymer.html
@@ -0,0 +1,32 @@
+<!--
+ Copyright 2013 The Polymer Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style
+ license that can be found in the LICENSE file.
+-->
+
+<script src="src/js/use_native_dartium_shadowdom.js"></script>
+
+<!--
+These two files are from the Polymer project:
+https://github.com/Polymer/platform/ and https://github.com/Polymer/polymer/.
+
+You can replace platform.js and polymer.html with different versions if desired.
+-->
+<!-- minified for deployment: -->
+<script src="../../packages/web_components/platform.js"></script>
+<link rel="import" href="src/js/polymer/polymer.html">
+
+<!-- unminfied for debugging:
+<script src="../../packages/web_components/platform.concat.js"></script>
+<script src="src/js/polymer/polymer.concat.js"></script>
+<link rel="import" href="src/js/polymer/polymer-body.html">
+-->
+
+<!-- Teach dart2js about Shadow DOM polyfill objects. -->
+<script src="../../packages/web_components/dart_support.js"></script>
+
+<!-- Bootstrap the user application in a new isolate. -->
+<script src="boot.js"></script>
+<!-- TODO(sigmund): replace boot.js by boot.dart (dartbug.com/18007)
+<script type="application/dart">export "package:polymer/boot.dart";</script>
+ -->

Powered by Google App Engine
This is Rietveld 408576698