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

Unified Diff: samples/third_party/todomvc_performance/js_todomvc/components/polymer-selector/index.html

Issue 1576153002: Remove the Dromaeo and TodoMVC samples. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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: samples/third_party/todomvc_performance/js_todomvc/components/polymer-selector/index.html
diff --git a/samples/third_party/todomvc_performance/js_todomvc/components/polymer-selector/index.html b/samples/third_party/todomvc_performance/js_todomvc/components/polymer-selector/index.html
deleted file mode 100644
index 9bb2721c008f828d3d356f6db83824a6dc75b767..0000000000000000000000000000000000000000
--- a/samples/third_party/todomvc_performance/js_todomvc/components/polymer-selector/index.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <title>polymer api</title>
- <style>
- html, body {
- font-family: Arial, sans-serif;
- white-space: nowrap;
- overflow: hidden;
- }
- [noviewer] [ifnoviewer] {
- display: block;
- }
- [detector], [ifnoviewer], [noviewer] [ifviewer] {
- display: none;
- }
- [ifviewer], [ifnoviewer] {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- }
- iframe {
- border: none;
- margin: 0;
- width: 100%;
- height: 100%;
- }
- #remote {
- position: absolute;
- top: 0;
- right: 0;
- }
- </style>
- <script src="../platform/platform.js"></script>
- <link rel="import" href="../polymer-home-page/polymer-home-page.html">
-</head>
-<body>
- <img detector src="../polymer-home-page/bowager-logo.png" onerror="noviewer()">
- <polymer-home-page ifviewer></polymer-home-page>
- <div ifnoviewer>
- <span id="remote">[remote]</span>
- <iframe></iframe>
- </div>
- <!-- -->
- <script>
- var remoteDocs = 'http://turbogadgetry.com/bowertopia/components/';
- // if no local info viewer, load it remotely
- function noviewer() {
- document.body.setAttribute('noviewer', '');
- var path = location.pathname.split('/');
- var module = path.pop() || path.pop();
- document.querySelector('iframe').src = remoteDocs + module;
- document.querySelector('title').textContent = module;
- }
- // for testing only
- var opts = window.location.search;
- if (opts.indexOf('noviewer') >= 0) {
- noviewer();
- }
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698