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

Unified Diff: web/inc/logdog-stream-view/logdog-stream-view.html

Issue 2887153005: [logdog-stream-view] Auth and misc bugfixes. (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | web/inc/logdog-stream-view/model.ts » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: web/inc/logdog-stream-view/logdog-stream-view.html
diff --git a/web/inc/logdog-stream-view/logdog-stream-view.html b/web/inc/logdog-stream-view/logdog-stream-view.html
index 1a23ab344ffbda503449fe7f69c799e6f0ac8410..19bb700d2355235f9def212eca35c7bb0018966a 100644
--- a/web/inc/logdog-stream-view/logdog-stream-view.html
+++ b/web/inc/logdog-stream-view/logdog-stream-view.html
@@ -276,12 +276,14 @@ An element for rendering muxed LogDog log streams.
text="Load Above"
disabled="[[streamAnchorsNotClickable]]"
on-click="_handleUpClick">
+ <iron-icon icon="file-upload"></iron-icon>
</paper-button>
<paper-button id="logSplitDown"
class="logFetchButton logSplitDownButton giant"
text="Load Below"
disabled="[[streamAnchorsNotClickable]]"
on-click="_handleDownClick">
+ <iron-icon icon="file-download"></iron-icon>
</paper-button>
</div>
@@ -539,7 +541,7 @@ An element for rendering muxed LogDog log streams.
},
_handleUpClick: function(e) {
- this._view._handleUpClick();
+ this._view.handleUpClick();
},
_handleBottomClick: function(e) {
@@ -599,7 +601,7 @@ An element for rendering muxed LogDog log streams.
/** Callback when "split" button has been clicked. */
_scrollToSplit: function() {
- this._maybeScrollToElement(this.$.logSplit, true, true);
+ this._view.handleScrollToSplitClicked();
},
_updateSplitVisible: function(v) {
« no previous file with comments | « no previous file | web/inc/logdog-stream-view/model.ts » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698