| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. | 2 Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 | 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. | 4 that can be found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <link rel="import" href="../bower_components/polymer/polymer.html"> | 7 <link rel="import" href="../bower_components/polymer/polymer.html"> |
| 8 <link rel="import" href="../bower_components/google-signin/google-signin-aware.h
tml"> | 8 <link rel="import" href="../bower_components/google-signin/google-signin-aware.h
tml"> |
| 9 <link rel="import" href="../bower_components/iron-icons/iron-icons.html"> | 9 <link rel="import" href="../bower_components/iron-icons/iron-icons.html"> |
| 10 <link rel="import" href="../bower_components/iron-icons/av-icons.html"> | 10 <link rel="import" href="../bower_components/iron-icons/av-icons.html"> |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 }, | 473 }, |
| 474 | 474 |
| 475 /** | 475 /** |
| 476 * (Computed) the iron-icon name of the backfill button icon. | 476 * (Computed) the iron-icon name of the backfill button icon. |
| 477 */ | 477 */ |
| 478 backfillIconName: { | 478 backfillIconName: { |
| 479 type: String, | 479 type: String, |
| 480 computed: '_computeBackfillIconName(backfill)', | 480 computed: '_computeBackfillIconName(backfill)', |
| 481 }, | 481 }, |
| 482 | 482 |
| 483 /** If populated, the stream name at the top will link to this URL. */ |
| 484 streamLinkUrl: { |
| 485 type: String, |
| 486 value: null, |
| 487 notify: true, |
| 488 }, |
| 489 |
| 483 /** | 490 /** |
| 484 * The current stream status. This is an Array of objects: | 491 * The current stream status. This is an Array of objects: |
| 485 * obj.name is the name of the stream. | 492 * obj.name is the name of the stream. |
| 486 * obj.desc is the status description of the stream. | 493 * obj.desc is the status description of the stream. |
| 487 */ | 494 */ |
| 488 streamStatus: { | 495 streamStatus: { |
| 489 type: Array, | 496 type: Array, |
| 490 value: null, | 497 value: null, |
| 491 notify: true, | 498 notify: true, |
| 492 readOnly: true, | 499 readOnly: true, |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 /** Filter function to invert a value. */ | 619 /** Filter function to invert a value. */ |
| 613 _not: function(v) { | 620 _not: function(v) { |
| 614 return (!v); | 621 return (!v); |
| 615 }, | 622 }, |
| 616 | 623 |
| 617 _onSignin: function() { | 624 _onSignin: function() { |
| 618 this._view.handleSignin(); | 625 this._view.handleSignin(); |
| 619 }, | 626 }, |
| 620 }); | 627 }); |
| 621 </script> | 628 </script> |
| OLD | NEW |