Last active
November 27, 2018 10:23
-
-
Save kanonji/3c1ff5ac030690ca3a3c5caf280f6b91 to your computer and use it in GitHub Desktop.
http://phpcon.php.gr.jp/2018/ のタイムテーブルの縦横幅を拡張してスクロールバーが出ない様にするbookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){$(".container.bg-timetable").css("max-width","90%");$(".fc-scroller.fc-time-grid-container").css("height","initial");$("#calendar").css("width","initial")})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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