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

Side by Side Diff: appengine/config_service/ui/src/config-ui/config-ui.html

Issue 2971033003: Added force refresh to the config set page. (Closed)
Patch Set: Hide force refresh from users who are not signed in 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 unified diff | Download patch
« no previous file with comments | « appengine/config_service/ui/src/config-ui/config-set.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2017 The LUCI Authors. All rights reserved. 2 Copyright 2017 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/app-layout/app-layout.html"> 8 <link rel="import" href="../../bower_components/app-layout/app-layout.html">
9 <link rel="import" href="../../bower_components/paper-search/paper-search-bar.ht ml"> 9 <link rel="import" href="../../bower_components/paper-search/paper-search-bar.ht ml">
10 <link rel="import" href="../../bower_components/app-route/app-location.html"> 10 <link rel="import" href="../../bower_components/app-route/app-location.html">
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 active="{{projectActive}}"></app-route> 82 active="{{projectActive}}"></app-route>
83 83
84 <app-route route="{{route}}" 84 <app-route route="{{route}}"
85 pattern="/" 85 pattern="/"
86 active="{{frontPageActive}}"></app-route> 86 active="{{frontPageActive}}"></app-route>
87 87
88 <template is="dom-if" if="[[frontPageActive]]"> 88 <template is="dom-if" if="[[frontPageActive]]">
89 <front-page auth_headers="{{auth_headers}}"></front-page> 89 <front-page auth_headers="{{auth_headers}}"></front-page>
90 </template> 90 </template>
91 91
92 <template is="dom-if" if="[[serviceActive]]"> 92 <template is="dom-if" if="[[serviceActive]]" restamp="true">
93 <config-set category="services" 93 <config-set category="services"
94 name="{{serviceData.serviceName}}" 94 name="{{serviceData.serviceName}}"
95 route="{{serviceTail}}" 95 route="{{serviceTail}}"
96 auth_headers="{{auth_headers}}"></config-set> 96 auth_headers="{{auth_headers}}"></config-set>
97 </template> 97 </template>
98 98
99 <template is="dom-if" if="[[projectActive]]"> 99 <template is="dom-if" if="[[projectActive]]" restamp="true">
100 <config-set category="projects" 100 <config-set category="projects"
101 name="{{projectData.projectName}}" 101 name="{{projectData.projectName}}"
102 route="{{projectTail}}" 102 route="{{projectTail}}"
103 auth_headers="{{auth_headers}}"></config-set> 103 auth_headers="{{auth_headers}}"></config-set>
104 </template> 104 </template>
105 105
106 </template> 106 </template>
107 107
108 <script> 108 <script>
109 Polymer({ 109 Polymer({
(...skipping 11 matching lines...) Expand all
121 // If the path is blank, redirect to / 121 // If the path is blank, redirect to /
122 if (!this.route.path) { 122 if (!this.route.path) {
123 this.set('route.path', '/'); 123 this.set('route.path', '/');
124 } 124 }
125 }); 125 });
126 }, 126 },
127 127
128 }); 128 });
129 </script> 129 </script>
130 </dom-module> 130 </dom-module>
OLDNEW
« no previous file with comments | « appengine/config_service/ui/src/config-ui/config-set.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698