├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── browser.js ├── index.js ├── package.json └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriema/electron-notification-shim/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriema/electron-notification-shim/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriema/electron-notification-shim/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriema/electron-notification-shim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriema/electron-notification-shim/HEAD/README.md -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- 1 | // Include the shim 2 | require('./.')(); 3 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriema/electron-notification-shim/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriema/electron-notification-shim/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriema/electron-notification-shim/HEAD/test.js --------------------------------------------------------------------------------