Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
302b39f587 | ||
|
|
97c2fd11e2 | ||
|
|
3b6b214eb8 | ||
|
|
4f88f06677 | ||
|
|
b724df3b02 | ||
|
|
521514180d | ||
|
|
904d09251b |
+2
-5
@@ -1,7 +1,4 @@
|
||||
2015-10-20 v0.3.3
|
||||
|
||||
@EvanCarroll - Updated to remove Grunt, and coffeescript stuff.
|
||||
|
||||
2015-11-01 v0.3.4
|
||||
2015-10-20 v0.4
|
||||
|
||||
@EvanCarroll - Updated to remove Grunt, and coffeescript stuff, changed to use UMD.
|
||||
@jpillora - Remove deprecated grunt file, there is now a single `notify.js` file
|
||||
|
||||
@@ -7,25 +7,26 @@ See demos and full documentation at:
|
||||
|
||||
## http://notifyjs.com/
|
||||
|
||||
#### MIT License
|
||||
SYNOPSIS
|
||||
====
|
||||
|
||||
Copyright © 2015 Jaime Pillora <dev@jpillora.com>
|
||||
Global Notifications
|
||||
----
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
$.notify("Hello World");
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
Element Notifications
|
||||
----
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
$(".elem-demo").notify("Hello World");
|
||||
|
||||
// where x is one letter: [t]op [m]iddle [b]ottom
|
||||
// where y is one letter: [l]eft [c]enter [r]ight
|
||||
$(".elem-demo").notify("Hello World", {position: "x y"});
|
||||
|
||||
COPYRIGHT
|
||||
====
|
||||
|
||||
Notify.js is released under the [MIT License](https://opensource.org/licenses/MIT).
|
||||
|
||||
Copyright © Jaime Pillora <dev@jpillora.com>
|
||||
|
||||
Vendored
+579
-549
File diff suppressed because it is too large
Load Diff
+33
-16
@@ -1,18 +1,35 @@
|
||||
{
|
||||
"title": "Notify.js",
|
||||
"name": "notify",
|
||||
"version": "0.3.4",
|
||||
"author": {
|
||||
"name": "Jaime Pillora"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Evan Carroll",
|
||||
"url": "http://www.evancarroll.com",
|
||||
"email": "me@evancarroll.com"
|
||||
}
|
||||
],
|
||||
"homepage": "http://notifyjs.com/",
|
||||
"license": "MIT",
|
||||
"main": "dist/notify.js"
|
||||
"title": "Notify.js",
|
||||
"name": "notify",
|
||||
"version": "0.4.0",
|
||||
"author": {
|
||||
"name": "Jaime Pillora"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Evan Carroll",
|
||||
"url": "http://www.evancarroll.com",
|
||||
"email": "me@evancarroll.com"
|
||||
}
|
||||
],
|
||||
"homepage": "http://notifyjs.com/",
|
||||
"license": "MIT",
|
||||
"main": "dist/notify.js",
|
||||
"scripts": {
|
||||
"test": "npm run lint",
|
||||
"lint": "jshint ./dist/*.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"jquery": "^2.1.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"jshint": "^2.8.0"
|
||||
},
|
||||
"keywords": [
|
||||
"notify",
|
||||
"notification",
|
||||
"prompt",
|
||||
"popup",
|
||||
"jquery-plugin"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user