Created
June 13, 2017 08:08
-
-
Save sakahukamaki/88167230e4ec1fc3ec6da154526fba01 to your computer and use it in GitHub Desktop.
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
// thにスクロールバー分の幅を持たせる | |
$(document).on('turbolinks:load', function(){ | |
var outer = window.outerWidth; | |
var inner = window.innerWidth; | |
var scroll = outer - inner; | |
$("thead tr").attr("style", "padding-right: "+ scroll +"px"); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment