├── .github └── workflows │ └── pull-request.yml ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── binding.gyp ├── lib └── binding.js ├── package.json ├── spec ├── binding.spec.js └── support │ └── jasmine.json └── src ├── scrollbar-style-observer-mac.mm ├── scrollbar-style-observer-non-mac.cc └── scrollbar-style-observer.h /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /build 3 | npm-debug.log 4 | .node-version 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/binding.gyp -------------------------------------------------------------------------------- /lib/binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/lib/binding.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/package.json -------------------------------------------------------------------------------- /spec/binding.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/spec/binding.spec.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /src/scrollbar-style-observer-mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/src/scrollbar-style-observer-mac.mm -------------------------------------------------------------------------------- /src/scrollbar-style-observer-non-mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/src/scrollbar-style-observer-non-mac.cc -------------------------------------------------------------------------------- /src/scrollbar-style-observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/scrollbar-style/HEAD/src/scrollbar-style-observer.h --------------------------------------------------------------------------------