Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4113 efrain 1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset='utf-8' />
5
<link href='../fullcalendar.min.css' rel='stylesheet' />
6
<link href='../fullcalendar.print.min.css' rel='stylesheet' media='print' />
7
<script src='../lib/moment.min.js'></script>
8
<script src='../lib/jquery.min.js'></script>
9
<script src='../fullcalendar.min.js'></script>
10
<script>
11
 
12
  $(document).ready(function() {
13
 
14
    $('#calendar').fullCalendar({
15
      header: {
16
        left: 'prev,next today',
17
        center: 'title',
18
        right: 'month,agendaWeek,agendaDay,listWeek'
19
      },
20
      defaultDate: '2020-05-12',
21
      navLinks: true, // can click day/week names to navigate views
22
      editable: true,
23
      eventLimit: true, // allow "more" link when too many events
24
      events: [
25
        {
26
          title: 'All Day Event',
27
          start: '2020-05-01',
28
        },
29
        {
30
          title: 'Long Event',
31
          start: '2020-05-07',
32
          end: '2020-05-10'
33
        },
34
        {
35
          id: 999,
36
          title: 'Repeating Event',
37
          start: '2020-05-09T16:00:00'
38
        },
39
        {
40
          id: 999,
41
          title: 'Repeating Event',
42
          start: '2020-05-16T16:00:00'
43
        },
44
        {
45
          title: 'Conference',
46
          start: '2020-05-11',
47
          end: '2020-05-13'
48
        },
49
        {
50
          title: 'Meeting',
51
          start: '2020-05-12T10:30:00',
52
          end: '2020-05-12T12:30:00'
53
        },
54
        {
55
          title: 'Lunch',
56
          start: '2020-05-12T12:00:00'
57
        },
58
        {
59
          title: 'Meeting',
60
          start: '2020-05-12T14:30:00'
61
        },
62
        {
63
          title: 'Happy Hour',
64
          start: '2020-05-12T17:30:00'
65
        },
66
        {
67
          title: 'Dinner',
68
          start: '2020-05-12T20:00:00'
69
        },
70
        {
71
          title: 'Birthday Party',
72
          start: '2020-05-13T07:00:00'
73
        },
74
        {
75
          title: 'Click for Google',
76
          url: 'http://google.com/',
77
          start: '2020-05-28'
78
        }
79
      ]
80
    });
81
 
82
  });
83
 
84
</script>
85
<style>
86
 
87
  body {
88
    margin: 40px 10px;
89
    padding: 0;
90
    font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
91
    font-size: 14px;
92
  }
93
 
94
  #calendar {
95
    max-width: 900px;
96
    margin: 0 auto;
97
  }
98
 
99
</style>
100
</head>
101
<body>
102
 
103
  <div id='calendar'></div>
104
 
105
</body>
106
</html>