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

Unified Diff: chrome/common/extensions/docs/examples/extensions/buildbot/popup.html

Issue 18401004: Continuously update status in the buildbot extension popup window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add copyright Created 7 years, 5 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: chrome/common/extensions/docs/examples/extensions/buildbot/popup.html
diff --git a/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html b/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html
index 2cdc83f7a1d495c7c80e79f8610f614ebeaa3680..d9366f5747e2e979fd0b0314970c6e5f47861cc2 100644
--- a/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html
+++ b/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html
@@ -2,49 +2,13 @@
<html>
<head>
<title>Chromium Buildbot Monitor Popup</title>
- <style>
- body {
- font-family: sans-serif;
- font-size: 0.8em;
- overflow: hidden;
- }
-
- a {
- text-decoration: underline;
- color: #444;
- }
-
- a:hover {
- color: black;
- cursor: pointer;
- }
-
- .status-label {
- text-align: right;
- font-size: 12px;
- font-weight: bold;
- min-width: 85px;
- padding: 0px;
- }
-
- .botstatus {
- padding: 0px;
- }
-
- .statusiframe {
- height: 10px;
- border: none;
- }
-
- .spacer {
- }
- </style>
-</head>
-<body>
- <table id="status-table">
- </table>
- <script src='utils.js'></script>
- <script src='try_status.js'></script>
- <script src='popup.js'></script>
-</body>
+ <link href="popup.css" rel="stylesheet" type="text/css" />
+ </head>
+ <body>
+ <table id="status-table"></table>
+ <script src='utils.js'></script>
+ <script src='try_status.js'></script>
+ <script src='active_issues.js'></script>
+ <script src='popup.js'></script>
+ </body>
</html>

Powered by Google App Engine
This is Rietveld 408576698