electron scrollbar

Solutions on MaxInterview for electron scrollbar by the best coders in the world

showing results for - "electron scrollbar"
Sherlock
04 Jul 2018
1// 1. Download overlayScrollbars from: https://kingsora.github.io/OverlayScrollbars/
2// 2. Link overlayScrollbars in html document: <script src="../assets/js/jquery.overlayScrollbars.min.js"></script>
3
4$(function() {
5	//The passed argument has to be at least a empty object or a object with your desired options
6  	// Choose all the targets you want the scrollbar to apear
7	$("#target, .target").overlayScrollbars({
8    className: "os-theme-dark",
9  });
10});