Skip to content

Commit c6a3e3a

Browse files
committed
Merge pull request #88 from mouse0270/dev
Version 3.1.3
2 parents 09adf84 + b6105df commit c6a3e3a

File tree

9 files changed

+28
-11
lines changed

9 files changed

+28
-11
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,18 @@ meteor add mouse0270:bootstrap-notify
1515
```
1616

1717
## Changelog
18-
##### Version 3.0.2
18+
##### Version 3.1.3
19+
- Added Meteor Support
20+
- Fixed issue with Glyphicons Pro
21+
- Updating version pattern.
22+
```
23+
x.y.z
24+
x = Main version of the plugin
25+
y = New features were added to the plugin
26+
z = Fixes/patches to existing features of the plugin
27+
```
28+
29+
##### [Version 3.0.2](http://bootstrap-notify.remabledesigns.com/3.0.2/)
1930
- Fixed update for backwards compatibility
2031

2132
##### [Version 3.0.1](http://bootstrap-notify.remabledesigns.com/3.0.1/)

bootstrap-notify.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Project: Bootstrap Notify = v3.0.2
2+
* Project: Bootstrap Notify = v3.1.3
33
* Description: Turns standard Bootstrap alerts into "Growl-like" notifications.
44
* Author: Mouse0270 aka Robert McIntosh
55
* License: MIT License
@@ -225,6 +225,9 @@
225225
break;
226226
}
227227
this.$ele.css(css).addClass(this.settings.animate.enter);
228+
$.each(Array('webkit', 'moz', 'o', 'ms', ''), function(index, prefix) {
229+
self.$ele[0].style[prefix+'AnimationIterationCount'] = 1;
230+
});
228231

229232
$(this.settings.element).append(this.$ele);
230233

bootstrap-notify.min.js

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

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "remarkable-bootstrap-notify",
33
"main": "bootstrap-notify.js",
4-
"version": "3.0.2",
4+
"version": "3.1.3",
55
"homepage": "http://bootstrap-notify.remabledesigns.com/",
66
"authors": [
77
"mouse0270 <[email protected]>"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mouse0270/bootstrap-notify",
3-
"version": "3.0.2",
3+
"version": "3.1.3",
44
"type": "library",
55
"description": "This is a simple pluging that turns standard Bootstrap alerts into \"Growl-like\" notifications.",
66
"keywords": [

dist/bootstrap-notify.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Project: Bootstrap Notify = v3.0.2
2+
* Project: Bootstrap Notify = v3.1.3
33
* Description: Turns standard Bootstrap alerts into "Growl-like" notifications.
44
* Author: Mouse0270 aka Robert McIntosh
55
* License: MIT License
@@ -225,6 +225,9 @@
225225
break;
226226
}
227227
this.$ele.css(css).addClass(this.settings.animate.enter);
228+
$.each(Array('webkit', 'moz', 'o', 'ms', ''), function(index, prefix) {
229+
self.$ele[0].style[prefix+'AnimationIterationCount'] = 1;
230+
});
228231

229232
$(this.settings.element).append(this.$ele);
230233

dist/bootstrap-notify.min.js

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

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package.describe({
22
git: 'git://github.com/mouse0270/bootstrap-notify.git',
33
name: 'mouse0270:bootstrap-notify',
44
summary: 'Turns standard Bootstrap alerts into "Growl-like" notifications',
5-
version: '3.0.2',
5+
version: '3.1.3',
66
});
77

88
Package.onUse(function (api) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-notify",
3-
"version": "3.0.2",
3+
"version": "3.1.3",
44
"description": "This is a simple plugin that turns standard Bootstrap alerts into \"Growl-like\" notifications.",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)