Browse Source

Remove initializeCalendar() from mc.js

Vijayakrishnan Krishnan 5 years ago
parent
commit
c0684ec252
1 changed files with 0 additions and 9 deletions
  1. 0 9
      public/js/mc.js

+ 0 - 9
public/js/mc.js

@@ -214,12 +214,3 @@ function openInRHS(_url) {
     window.top.openInRHS(_url);
     window.top.openInRHS(_url);
     return false;
     return false;
 }
 }
-
-function initializeCalendar() {
-    if(!$('#calendar').length) return;
-    var calendarEl = document.getElementById('calendar');
-    var calendar = new FullCalendar.Calendar(calendarEl, {
-        initialView: 'dayGridMonth'
-    });
-    calendar.render();
-}