Skip to content

Instantly share code, notes, and snippets.

@kanonji
Last active November 27, 2018 10:23
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 kanonji/3c1ff5ac030690ca3a3c5caf280f6b91 to your computer and use it in GitHub Desktop.
Save kanonji/3c1ff5ac030690ca3a3c5caf280f6b91 to your computer and use it in GitHub Desktop.
http://phpcon.php.gr.jp/2018/ のタイムテーブルの縦横幅を拡張してスクロールバーが出ない様にするbookmarklet
javascript:(function(){$(".container.bg-timetable").css("max-width","90%");$(".fc-scroller.fc-time-grid-container").css("height","initial");$("#calendar").css("width","initial")})();
(function(){
$('.container.bg-timetable').css('max-width', '90%');
$('.fc-scroller.fc-time-grid-container').css('height', 'initial');
$('#calendar').css('width', 'initial');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment