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

Unified Diff: dashboard/dashboard/pinpoint/index/index.html

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)
Patch Set: rebase Created 3 years, 9 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 | « dashboard/dashboard/pinpoint/elements/jobs-table.html ('k') | tracing/tracing/base/base.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/pinpoint/index/index.html
diff --git a/dashboard/dashboard/pinpoint/index/index.html b/dashboard/dashboard/pinpoint/index/index.html
index 1859b0165157172c7204aca1247cb0d65089ffe4..bd56549e51914a94ab60499942d5b7f77afcbf96 100644
--- a/dashboard/dashboard/pinpoint/index/index.html
+++ b/dashboard/dashboard/pinpoint/index/index.html
@@ -55,16 +55,18 @@ found in the LICENSE file.
let page = e.detail.item;
// Need to call the the page.* functions async since this callback is
// called sync while the route is being modified.
- if ('deselected' in page)
+ if ('deselected' in page) {
this.async(function() { page.deselected(); });
+ }
},
onSelectedPage: function(e) {
let page = e.detail.item;
// Need to call the the page.* functions async since this callback is
// called sync while the route is being modified.
- if ('selected' in page)
+ if ('selected' in page) {
this.async(function() { page.selected(); });
+ }
},
ready: function() {
« no previous file with comments | « dashboard/dashboard/pinpoint/elements/jobs-table.html ('k') | tracing/tracing/base/base.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698