Skip to content

Commit dd86ea3

Browse files
committed
2.0.3
1 parent e29a0e3 commit dd86ea3

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.0.3 (2014-05-17)
2+
3+
## Bug Fixes
4+
- positionClass changes were not being honored due to 2.0.2 release changes. Refactored getContainer to only get the container, unless a 2nd boolean parameter is passed in in which case it will also create it if the container did not exist [871c2a6](https://github.com/CodeSeven/toastr/commit/871c2a6e438bb6b996cfb80286720604a4cf00fd)
5+
16
# 2.0.2 (2014-04-29)
27

38
## Features

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
**toastr** is a Javascript library for non-blocking notifications. jQuery is required. The goal is to create a simple core library that can be customized and extended.
33

44
## Current Version
5-
2.0.2
5+
2.0.3
66

77
## Demo
88
- Demo can be found at http://codeseven.github.io/toastr/demo.html
@@ -12,12 +12,12 @@
1212
Toastr is hosted at CDN JS
1313

1414
#### Debug
15-
- [//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/js/toastr.js](//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/js/toastr.js)
16-
- [//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/css/toastr.css](//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/css/toastr.css)
15+
- [//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.js](//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.js)
16+
- [//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.css](//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.css)
1717

1818
#### Minified
19-
- [//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/js/toastr.min.js](//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/js/toastr.min.js)
20-
- [//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/css/toastr.min.css](//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/css/toastr.min.css)
19+
- [//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js](//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js)
20+
- [//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css](//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css)
2121

2222
## NuGet Gallery
2323
http://nuget.org/packages/toastr
@@ -143,7 +143,7 @@ Inspired by https://github.com/Srirangan/notifer.js/.
143143

144144

145145
## Copyright
146-
Copyright © 2012 [Hans Fjällemark](http://twitter.com/hfjallemark) & [John Papa](http://twitter.com/John_Papa).
146+
Copyright © 2012-2014 [Hans Fjällemark](http://twitter.com/hfjallemark) & [John Papa](http://twitter.com/John_Papa).
147147

148148
## License
149149
toastr is under MIT license - http://www.opensource.org/licenses/mit-license.php

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "toastr",
33
"filename": "js/toastr.min.js",
4-
"version": "2.0.1",
4+
"version": "2.0.3",
55
"description": "ToastrJS is a JavaScript library for Gnome / Growl type non-blocking notifications. jQuery is required. The goal is to create a simple core library that can be customized and extended.",
66
"homepage": "http://www.toastrjs.com",
77
"keywords": [

toastr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
options: {},
3232
subscribe: subscribe,
3333
success: success,
34-
version: '2.0.3beta',
34+
version: '2.0.3',
3535
warning: warning
3636
};
3737

toastr.min.js

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)