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

Unified Diff: appengine/config_service/ui/src/config-ui/config-ui.html

Issue 2980973002: config_service: Fixed multiple ajax requests in the front page while the page determines whether a … (Closed)
Patch Set: Cleaned up unnecessary code Created 3 years, 5 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
Index: appengine/config_service/ui/src/config-ui/config-ui.html
diff --git a/appengine/config_service/ui/src/config-ui/config-ui.html b/appengine/config_service/ui/src/config-ui/config-ui.html
index 0408ba0313115598e358662e691184b1ea93ee07..440b7b30531cadb9dd226ae7c74afd40a2fa5b44 100644
--- a/appengine/config_service/ui/src/config-ui/config-ui.html
+++ b/appengine/config_service/ui/src/config-ui/config-ui.html
@@ -41,9 +41,7 @@
</style>
<app-drawer-layout fullbleed force-narrow>
-
<app-header-layout>
-
<app-header reveals slot="header">
<app-toolbar>
<!--<image class="logo" src="/static/images/chromium.png"/>-->
@@ -84,29 +82,26 @@
active="{{frontPageActive}}"></app-route>
<template is="dom-if" if="[[frontPageActive]]">
- <front-page auth_headers="{{auth_headers}}"></front-page>
+ <front-page auth_headers="[[auth_headers]]"></front-page>
</template>
<template is="dom-if" if="[[serviceActive]]" restamp="true">
<config-set category="services"
- name="{{serviceData.serviceName}}"
- route="{{serviceTail}}"
- auth_headers="{{auth_headers}}"
+ name="[[serviceData.serviceName]]"
+ route="[[serviceTail]]"
+ auth_headers="[[auth_headers]]"
front-page-is-active="[[frontPageActive]]"></config-set>
</template>
<template is="dom-if" if="[[projectActive]]" restamp="true">
<config-set category="projects"
- name="{{projectData.projectName}}"
- route="{{projectTail}}"
- auth_headers="{{auth_headers}}"
+ name="[[projectData.projectName]]"
+ route="[[projectTail]]"
+ auth_headers="[[auth_headers]]"
front-page-is-active="[[frontPageActive]]"></config-set>
</template>
-
</app-header-layout>
-
</app-drawer-layout>
-
</template>
<script>
« no previous file with comments | « appengine/config_service/ui/common/auth-signin.html ('k') | appengine/config_service/ui/src/config-ui/front-page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698