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

Unified Diff: go/src/infra/appengine/sheriff-o-matic/elements/pages/som-rotation-calendar.html

Issue 2110723004: SoM: Navbar links++ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Minor tweaks. Created 4 years, 6 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: go/src/infra/appengine/sheriff-o-matic/elements/pages/som-rotation-calendar.html
diff --git a/go/src/infra/appengine/sheriff-o-matic/elements/pages/som-rotation-calendar.html b/go/src/infra/appengine/sheriff-o-matic/elements/pages/som-rotation-calendar.html
new file mode 100644
index 0000000000000000000000000000000000000000..3b830ff78e06ccaeda64ff6d6255fb6d288e7571
--- /dev/null
+++ b/go/src/infra/appengine/sheriff-o-matic/elements/pages/som-rotation-calendar.html
@@ -0,0 +1,31 @@
+<link rel="import" href="/bower_components/iron-icon/iron-icon.html">
+<dom-module id="som-rotation-calendar">
+ <template>
+ <style>
+ iframe {
+ border: 0;
+ overflow: scroll;
+ }
+ </style>
+ <h2>Rotation Calendar
+ <a target="_blank" href="https://chromium-build.appspot.com/static/rotations.html">
+ <iron-icon icon="link"></iron-icon>
+ </a>
+ </h2>
+ <div class="flex layout vertical">
+ <iframe
+ src="https://chromium-build.appspot.com/static/rotations.html"
+ class="flex"
+ ></iframe>
+ </div>
+ </template>
+ <script>
+ (function() {
+ 'use strict';
+
+ Polymer({
+ is: 'som-rotation-calendar',
+ });
+ })();
+ </script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698