Blame view

bower_components/paper-date-picker/demo/paper-calendar.html 1.33 KB
12e73bf0   Luigi Serra   cocreation updates
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  <!doctype html>
  <html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
  
    <title>paper-date-picker Demo</title>
   
    <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
  
    <link rel="import" href="../paper-date-picker.html">
    <link rel="import" href="../../paper-styles/demo-pages.html">
    <link rel="import" href="../../paper-dialog/paper-dialog.html">
    <link rel="import" href="../../paper-button/paper-button.html">
  
    <style is="custom-style">
      section {
        margin: 24px;
      }
      h3 {
        text-align: center;
      }
      #container {
        margin: 0 auto;
        height: 300px;
        width: 300px;
      }
    </style>
  </head>
  <body unresolved>
    <template is="dom-bind" id="scope">
      <h3>{{dateFormat(date, 'LLL')}}</h3>
      <section>
        <div id="container">
          <paper-calendar id="picker" date="{{date}}"></paper-calendar>
        </div>
      </section>
    </template>
    <script>
      var scope = Polymer.dom(document).querySelector('#scope');
      scope.dateFormat = function(date, format) {
        if (!date) {
          return 'No date selected';
        }
        return moment(date).format(format);
      };
      scope.date = new Date(2017, 3, 13);
    </script>
  </body>
  </html>