| OLD | NEW |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. | 1 // Copyright 2016 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // A Series of time based utilites for Milo. | 5 // A Series of time based utilites for Milo. |
| 6 // Requires: moment.js, moment-timezone.js, jquery, jquery-ui | 6 // Requires: moment.js, moment-timezone.js, jquery, jquery-ui |
| 7 | 7 |
| 8 | 8 |
| 9 (function(window) { | 9 (function(window) { |
| 10 'use strict'; | 10 'use strict'; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 } | 89 } |
| 90 } catch (e) { | 90 } catch (e) { |
| 91 console.error('could not annotate duration', dur, e) | 91 console.error('could not annotate duration', dur, e) |
| 92 } | 92 } |
| 93 } | 93 } |
| 94 } | 94 } |
| 95 | 95 |
| 96 window.milo = milo; | 96 window.milo = milo; |
| 97 | 97 |
| 98 }(window)); | 98 }(window)); |
| OLD | NEW |