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

Side by Side Diff: chrome/browser/resources/md_policy/md_policy.html

Issue 1371073003: Display material design policies grouped by tags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning and Refactoring. Created 5 years, 2 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Policies</title> 5 <title>Policies</title>
6
7 <script src="chrome://resources/js/cr.js"></script>
8 <script src="chrome://resources/js/load_time_data.js"></script>
9 <script src="chrome://resources/js/util.js"></script>
10 <script src="chrome://resources/js/polymer_config.js"></script>
11 <script src="chrome://md-policy/strings.js"></script>
12
13 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html" >
14
15 <link rel="import" href="chrome://md-policy/cr_policy_group.html">
16 <link rel="import" href="chrome://resources/polymer/v1_0/paper-card/paper-card .html">
17
18 <link rel="import" type="css" href="chrome://resources/css/roboto.css">
19
20 <link rel="stylesheet" type="text/css" href="chrome://md-policy/md_policy_glob al.css">
6 </head> 21 </head>
7 <body> 22 <body>
8 <h1>A Material Design policy page is under construction!</h1> 23
24 <dom-module id="cr-policy-ui">
stevenjb 2015/10/06 22:42:03 Polymer elements and their scripts should be place
fhorschig 2015/10/07 16:37:11 Done.
25 <link rel="import" type="css" href="chrome://md-policy/md_policy.css">
26 <template>
27 <!--TODO(fhorschig): Remove mock and use reviewed i18n strings! -->
28 <paper-card id="introduction"
29 heading="[[introduction.title]]"
30 aria-label="[[introduction.title]]">
31 <div class="card-content">[[introduction.text]]</div>
32 </paper-card>
33 <!-- end of ToDo -->
34 <div id="groups">
35 </div>
36 </template>
37 <script src="md_policy.js"></script>
38 </dom-module>
39
40 <cr-policy-ui></cr-policy-ui>
41
42 <script src="chrome://resources/js/i18n_template.js"></script>
9 </body> 43 </body>
10 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698