Skip to content

Commit

Permalink
Fix dumb md mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-meacham committed Oct 23, 2015
1 parent c1c5e47 commit f1f5290
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ If you *always* want the count number to appear, even when 0 or negative, you ca
<notification-icon count='myCount' always-show='true'>
...
</notification-icon>
```

[Live Demo](http://jemonjam.com/angular-notification-icons#always-show)

Expand Down
2 changes: 1 addition & 1 deletion dist/angular-notification-icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ angular.module("angular-notification-icons.tpls").run(["$templateCache", functio
var self = this;
self.visible = false;
self.wideThreshold = self.wideThreshold || 100;
self.alwaysShow = self.always || false;
self.alwaysShow = self.alwaysShow || false;

var animationPromise;
var animationSet = {
Expand Down
2 changes: 1 addition & 1 deletion dist/angular-notification-icons.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/angular-notification-icons.directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
var self = this;
self.visible = false;
self.wideThreshold = self.wideThreshold || 100;
self.alwaysShow = self.always || false;
self.alwaysShow = self.alwaysShow || false;

var animationPromise;
var animationSet = {
Expand Down

0 comments on commit f1f5290

Please sign in to comment.