gitextract_8xne0dab/ ├── .babelrc ├── .codeclimate.yml ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE.txt ├── README.markdown ├── bower.json ├── browserstack-builds.json ├── browserstack-session.json ├── browserstack.json ├── composer.json ├── demo/ │ ├── animate.css │ ├── bouncejs/ │ │ └── bounce.js │ ├── demo.css │ ├── demo.js │ ├── font-awesome/ │ │ └── fonts/ │ │ └── FontAwesome.otf │ ├── fonts/ │ │ └── stylesheet.css │ ├── index.html │ ├── push.html │ └── sendpush.js ├── docs/ │ ├── .nojekyll │ ├── README.md │ ├── _assets/ │ │ ├── docs.js │ │ ├── docsify.js │ │ └── vue.css │ ├── _navbar.md │ ├── _sidebar.md │ ├── animations.md │ ├── api.md │ ├── bakers.md │ ├── browsers.md │ ├── confirm.md │ ├── index.html │ ├── installation.md │ ├── options.md │ ├── push.md │ ├── themes.md │ ├── types.md │ └── v2/ │ ├── animations.html │ ├── api.html │ ├── confirmations.html │ ├── index.html │ ├── layouts.html │ ├── options.html │ ├── releases.html │ ├── themes.html │ └── vendor/ │ ├── animate.css │ ├── custom.css │ ├── documentation.js │ ├── fastclick.js │ ├── google-code-prettify/ │ │ ├── prettify.css │ │ └── prettify.js │ ├── main.js │ ├── noty-2.4.1/ │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE.txt │ │ ├── README.markdown │ │ ├── bower.json │ │ ├── composer.json │ │ ├── demo/ │ │ │ ├── allLayouts.html │ │ │ ├── allTypes.html │ │ │ ├── animate.css │ │ │ ├── api.html │ │ │ ├── buttons.css │ │ │ ├── consumingAlert.html │ │ │ ├── customContainer.html │ │ │ ├── font-awesome/ │ │ │ │ └── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── index.html │ │ │ ├── issue302.html │ │ │ ├── jquery-1.8.0.js │ │ │ ├── killer.html │ │ │ ├── noanim.html │ │ │ ├── notification_html.js │ │ │ ├── progressbar.html │ │ │ ├── themeBootstrap.html │ │ │ ├── themeCss.html │ │ │ ├── usingMaxVisible.html │ │ │ ├── usingWithAnimate.css.html │ │ │ ├── usingWithButtons.html │ │ │ ├── usingWithButtons2.html │ │ │ ├── usingWithModal.html │ │ │ └── usingWithOldOptions.html │ │ ├── js/ │ │ │ └── noty/ │ │ │ ├── jquery.noty.js │ │ │ ├── layouts/ │ │ │ │ ├── bottom.js │ │ │ │ ├── bottomCenter.js │ │ │ │ ├── bottomLeft.js │ │ │ │ ├── bottomRight.js │ │ │ │ ├── center.js │ │ │ │ ├── centerLeft.js │ │ │ │ ├── centerRight.js │ │ │ │ ├── inline.js │ │ │ │ ├── top.js │ │ │ │ ├── topCenter.js │ │ │ │ ├── topLeft.js │ │ │ │ └── topRight.js │ │ │ ├── packaged/ │ │ │ │ └── jquery.noty.packaged.js │ │ │ ├── promise.js │ │ │ └── themes/ │ │ │ ├── bootstrap.js │ │ │ ├── default.js │ │ │ ├── metroui.js │ │ │ ├── relax.js │ │ │ └── semanticUI.js │ │ ├── noty.jquery.json │ │ └── package.json │ ├── ps-icon-pack.css │ └── showdown/ │ └── showdown.js ├── index.d.ts ├── lib/ │ ├── noty.css │ ├── noty.js │ └── themes/ │ ├── bootstrap-v3.css │ ├── bootstrap-v4.css │ ├── light.css │ ├── metroui.css │ ├── mint.css │ ├── nest.css │ ├── relax.css │ ├── semanticui.css │ └── sunset.css ├── manifest.json.template ├── package.json ├── postcss.config.js ├── service-worker.js.template ├── src/ │ ├── api.js │ ├── button.js │ ├── index.js │ ├── noty.scss │ ├── push.js │ ├── themes/ │ │ ├── bootstrap-v3.scss │ │ ├── bootstrap-v4.scss │ │ ├── light.scss │ │ ├── metroui.scss │ │ ├── mint.scss │ │ ├── nest.scss │ │ ├── relax.scss │ │ ├── semanticui.scss │ │ └── sunset.scss │ └── utils.js ├── test/ │ ├── index.html │ ├── unit/ │ │ ├── init.test.js │ │ └── phantom.js │ └── vendor/ │ ├── qunit-theme-ninja.css │ └── qunit.js └── webpack.config.js