Skip to content

Instantly share code, notes, and snippets.

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 sakahukamaki/88167230e4ec1fc3ec6da154526fba01 to your computer and use it in GitHub Desktop.
Save sakahukamaki/88167230e4ec1fc3ec6da154526fba01 to your computer and use it in GitHub Desktop.
// 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