Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. #calendario{
  2. display:none;
  3. }
  4. .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  5. float: right;
  6. color: #000;
  7. }
  8.  
  9. .fc-unthemed thead,.fc-day-header, .fc-widget-header, span{
  10. color: black;
  11. }
  12.  
  13. <script>
  14. $(document).ready(function() {
  15. $('#calendar').fullCalendar({
  16. height: 250,
  17. contentHeight: 273,
  18. editable: false,
  19. eventLimit: false,
  20. eventColor: '#dd6777',
  21. color: '#000'
  22. });
  23. });
  24. $('#calendario').on('shown.bs.modal', function () {
  25. $("#calendar").fullCalendar('render');
  26. });
  27.  
  28. $("#button").on("click",function(){
  29. $("#calendario").modal(open).show();;
  30. });
  31. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement