OLD | NEW |
---|---|
1 <div id="autofill-edit-address-overlay" class="page" hidden> | 1 <div id="autofill-edit-address-overlay" class="page" hidden> |
2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
3 <h1 id="autofill-address-title"></h1> | 3 <h1 id="autofill-address-title"></h1> |
4 <div class="content-area"> | 4 <div class="content-area"> |
5 <div> | 5 <div class="input-group settings-row" jsselect="$this"> |
6 <div id="autofill-name-labels"> | 6 |
7 <span i18n-content="autofillFirstNameLabel"></span> | 7 <div jsdisplay="field == 'fullName'" jsselect="$this"> |
Evan Stade
2014/04/24 21:05:51
jst is not what I was talking about.
<label i
please use gerrit instead
2014/04/25 18:54:25
Done.
| |
8 <span i18n-content="autofillMiddleNameLabel"></span> | 8 <div> |
9 <span i18n-content="autofillLastNameLabel"></span> | 9 <div class="autofill-name-labels"> |
10 <span i18n-content="autofillFirstNameLabel"></span> | |
11 <span i18n-content="autofillMiddleNameLabel"></span> | |
12 <span i18n-content="autofillLastNameLabel"></span> | |
13 </div> | |
14 </div> | |
15 <list class="full-name-list" field="fullName"></list> | |
10 </div> | 16 </div> |
11 </div> | |
12 <div> | |
13 <list id="full-name-list"></list> | |
14 </div> | |
15 | 17 |
16 <label class="settings-row"> | 18 <div jsdisplay="field == 'addrLines'" jsselect="$this"> |
17 <div i18n-content="autofillCompanyNameLabel"></div> | 19 <div jscontent="label"></div> |
18 <input id="company-name" type="text"> | 20 <list class="addr-lines" field="addrLines" |
19 </label> | 21 i18n-values="placeholder:addStreetAddressLinePlaceholder"></list> |
22 </div> | |
20 | 23 |
21 <label class="settings-row"> | 24 <label jsdisplay="field != 'fullName' && field != 'addrLines'" |
22 <div i18n-content="autofillAddrLine1Label"></div> | 25 jsselect="$this"> |
23 <input id="addr-line-1" type="text"> | 26 <div jscontent="label"></div> |
24 </label> | 27 <input jsvalues="class:length;field:field" type="text"> |
25 | |
26 <label class="settings-row"> | |
27 <div i18n-content="autofillAddrLine2Label"></div> | |
28 <input id="addr-line-2" type="text"> | |
29 </label> | |
30 | |
31 <div class="input-group settings-row"> | |
32 <label> | |
33 <div i18n-content="autofillCityLabel"></div> | |
34 <input id="city" type="text"> | |
35 </label> | 28 </label> |
36 | 29 |
37 <label> | |
38 <div id="state-label"></div> | |
39 <input id="state" type="text"> | |
40 </label> | |
41 | |
42 <label> | |
43 <div id="postal-code-label"></div> | |
44 <input id="postal-code" type="text"> | |
45 </label> | |
46 </div> | 30 </div> |
47 | 31 |
48 <div class="settings-row"> | 32 <div class="settings-row"> |
49 <label> | 33 <label> |
50 <div i18n-content="autofillCountryLabel"></div> | 34 <div i18n-content="autofillCountryLabel"></div> |
51 <select id="country"></select> | 35 <select class="country" field="country"></select> |
52 </label> | 36 </label> |
53 </div> | 37 </div> |
54 | 38 |
55 <div class="input-group settings-row"> | 39 <div class="input-group settings-row"> |
56 <div> | 40 <div> |
57 <div i18n-content="autofillPhoneLabel"></div> | 41 <div i18n-content="autofillPhoneLabel"></div> |
58 <list id="phone-list" | 42 <list class="phone-list" field="phone" |
59 i18n-values="placeholder:autofillAddPhonePlaceholder"></list> | 43 i18n-values="placeholder:autofillAddPhonePlaceholder"></list> |
60 </div> | 44 </div> |
61 | 45 |
62 <div> | 46 <div> |
63 <div i18n-content="autofillEmailLabel"></div> | 47 <div i18n-content="autofillEmailLabel"></div> |
64 <list id="email-list" | 48 <list class="email-list" field="email" |
65 i18n-values="placeholder:autofillAddEmailPlaceholder"></list> | 49 i18n-values="placeholder:autofillAddEmailPlaceholder"></list> |
66 </div> | 50 </div> |
67 </div> | 51 </div> |
68 | 52 |
69 </div> | 53 </div> |
70 | 54 |
71 <div class="action-area button-strip"> | 55 <div class="action-area button-strip"> |
72 <button id="autofill-edit-address-cancel-button" type="reset" | 56 <button id="autofill-edit-address-cancel-button" type="reset" |
73 i18n-content="cancel"></button> | 57 i18n-content="cancel"></button> |
74 <button id="autofill-edit-address-apply-button" type="submit" | 58 <button id="autofill-edit-address-apply-button" type="submit" |
75 class="default-button" i18n-content="ok" disabled></button> | 59 class="default-button" i18n-content="ok" disabled></button> |
76 </div> | 60 </div> |
77 </div> | 61 </div> |
62 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | |
OLD | NEW |