Skip to content

Instantly share code, notes, and snippets.

@DrewDouglass
Created March 14, 2017 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DrewDouglass/d4d062142a6f685f45c67515795ed797 to your computer and use it in GitHub Desktop.
Save DrewDouglass/d4d062142a6f685f45c67515795ed797 to your computer and use it in GitHub Desktop.
FullCalendar.js put date number at bottom right of cell.
//Fix for FullCalendar not having
//the most basic option of positioning
//the date number.
$(".fc-content-skeleton").each(function(index, el){
var $this = $(this);
var calHead = $this.find("thead").html();
$this.find("table").append("<tfoot>"+calHead+"</tfoot>");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment