%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/cwd/html/ppaobm/vendor/bower-asset/fullcalendar-scheduler/demos/ |
Upload File : |
<!DOCTYPE html> <html> <head> <meta charset='utf-8' /> <link href='../fullcalendar/dist/core/main.css' rel='stylesheet' /> <link href='../dist/timeline/main.css' rel='stylesheet' /> <script src='../fullcalendar/dist/core/main.js'></script> <script src='../fullcalendar/dist/interaction/main.js'></script> <script src='../fullcalendar/dist/google-calendar/main.js'></script> <script src='../dist/timeline/main.js'></script> <script> document.addEventListener('DOMContentLoaded', function() { var calendarEl = document.getElementById('calendar'); var calendar = new FullCalendar.Calendar(calendarEl, { plugins: [ 'interaction', 'timeline', 'googleCalendar' ], now: '2019-04-07', editable: true, // enable draggable events aspectRatio: 1.8, scrollTime: '00:00', // undo default 6am scrollTime header: { left: 'today prev,next', center: 'title', right: 'timelineMonth,timelineYear' }, defaultView: 'timelineMonth', /* NOTE: unfortunately, Scheduler doesn't know how to associated events from Google Calendar with resources, so if you specify a resource list, nothing will show up :( Working on some solutions. */ // THIS KEY WON'T WORK IN PRODUCTION!!! // To make your own Google API key, follow the directions here: // http://fullcalendar.io/docs/google_calendar/ googleCalendarApiKey: 'AIzaSyDcnW6WejpTOCffshGDDb4neIrXVUA1EAE', // US Holidays events: 'usa__en@holiday.calendar.google.com', eventClick: function(arg) { // opens events in a popup window window.open(arg.event.url, 'gcalevent', 'width=700,height=600'); // prevent browser from visiting event's URL in the current tab arg.jsEvent.preventDefault(); } }); calendar.render(); }); </script> <style> body { margin: 0; padding: 0; font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size: 14px; } #calendar { max-width: 900px; margin: 50px auto; } </style> </head> <body> <div id='calendar'></div> </body> </html>