Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(297)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: appengine/config_service/ui/src/config-ui/config-card.html
Issue
2935763003
:
config_service: improve landing page (Closed)
Patch Set: Fixed app.yaml issue, set _isEmpty to be a function in front-page.html
Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
appengine/config_service/app.yaml
appengine/config_service/ui/.gitignore
appengine/config_service/ui/bower.json
appengine/config_service/ui/index.html
appengine/config_service/ui/src/config-ui/config-card.html
appengine/config_service/ui/src/config-ui/config-ui.html
appengine/config_service/ui/src/config-ui/front-page.html
appengine/config_service/ui/static/images/chromium.png
appengine/config_service/ui/test/config-ui/config-ui_test.html
appengine/config_service/ui/test/config-ui/front-page_test.html
View unified diff
|
Download patch
« no previous file with comments
|
« appengine/config_service/ui/index.html
('k') |
appengine/config_service/ui/src/config-ui/config-ui.html »
('j') |
appengine/config_service/ui/src/config-ui/front-page.html »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
<!--
2
Copyright 2017 The LUCI Authors. All rights reserved.
3
Use of this source code is governed under the Apache License, Version 2.0
4
that can be found in the LICENSE file.
5
-->
6
7
<link rel="import" href="../../bower_components/paper-item/paper-item.html">
8
<link rel="import" href="../../bower_components/polymer/polymer.html">
9
10
<dom-module id="config-card">
11
<template>
12
<style>
13
.center {
14
margin: auto;
15
width: 25%;
16
border-style: solid;
17
border-width: 2px;
18
}
19
</style>
20
21
<paper-item class="center">
22
<!-- TODO(cwpayton): Add launch icon next to the name of the config
23
so that upon clicking the icon, the user will be taken to the config
24
set page. -->
25
[[name]]
26
</paper-item>
27
</template>
28
<script>
29
Polymer({
30
is: "config-card",
31
32
properties: {
33
name: {
34
type: String
35
}
36
}
37
});
38
</script>
39
</dom-module>
OLD
NEW
« no previous file with comments
|
« appengine/config_service/ui/index.html
('k') |
appengine/config_service/ui/src/config-ui/config-ui.html »
('j') |
appengine/config_service/ui/src/config-ui/front-page.html »
('J')
Issue 2935763003: config_service: improve landing page (Closed)
Created 3 years, 6 months ago by cwpayton
Modified 3 years, 6 months ago
Reviewers: Sergey Berezin (google), Ryan Tseng, nodir
Base URL:
Comments: 84
This is Rietveld
408576698