noty - A jQuery Notification Plugin
Hi
noty is a jQuery plugin that makes it easy to create alert - success - error - warning - information - confirmation messages as an alternative the standard alert dialog. Each notification is added to a queue. (Optional)
The notifications can be positioned at the;
top - topLeft - topCenter - topRight - center - centerLeft - centerRight - bottom - bottomLeft - bottomCenter - bottomRight
There are lots of other options in the API to customise the text, animation, speed, buttons and much more.
It also has various callbacks for the buttons, opening closing the notifications and queue control.
Documentation
Documentation and examples are here: http://needim.github.io/noty
Pull Requests
-
Fork the project, clone your fork,
and configure the remotes:
git clone https://github.com/<your-username>/noty.git
cd noty
git remote add upstream https://github.com/needim/noty.git
-
If you cloned a while ago, get the latest changes from upstream:
git checkout master
git pull upstream master
-
Create a new topic branch (off the main project development branch)
to contain your feature, change, or fix:
git checkout -b <topic-branch-name>
-
Commit your changes in logical chunks. Please adhere to these git commit
message guidelines
or your code is unlikely be merged into the main project. Use Git's
interactive rebase
feature to tidy up your commits before making them public.
-
Locally merge (or rebase) the upstream master branch into your topic branch:
git pull [--rebase] upstream master
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request
with a clear title and description against the master
branch.
IMPORTANT: By submitting a patch, you agree to allow the project owners to
license your work under the the terms of the MIT License.