| Index: milo/appengine/frontend/templates/includes/base.html
|
| diff --git a/milo/appengine/frontend/templates/includes/base.html b/milo/appengine/frontend/templates/includes/base.html
|
| index 42a35a99a09baf17d130ea517c998bc083985eae..c69c6c35cf64ce20568b7d1a6f0c3158b96238c1 100644
|
| --- a/milo/appengine/frontend/templates/includes/base.html
|
| +++ b/milo/appengine/frontend/templates/includes/base.html
|
| @@ -7,8 +7,12 @@ that can be found in the LICENSE file. -->
|
| <meta charset="utf-8">
|
| <title>{{template "title" .}}</title>
|
| <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css">
|
| +<link rel="stylesheet" href="/static/common/third_party/css/jquery-ui.min.css" type="text/css">
|
| +<script src="/static/common/third_party/js/moment-with-locales.min.js"></script>
|
| +<script src="/static/common/third_party/js/moment-timezone-with-data-2012-2022.min.js"></script>
|
| <script src="/static/common/js/time.js"></script>
|
| <script src="/static/common/third_party/js/jquery.min.js"></script>
|
| +<script src="/static/common/third_party/js/jquery-ui.min.js"></script>
|
| {{template "head" . }}
|
|
|
| <body class="interface">
|
| @@ -38,6 +42,11 @@ that can be found in the LICENSE file. -->
|
| (function () {
|
| 'use strict';
|
| milo.makeTimesLocal();
|
| + milo.annotateDurations();
|
| + $(document).tooltip({
|
| + show: false,
|
| + hide: false
|
| + });
|
| })();
|
| </script>
|
| <script>
|
|
|