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