Skip to content

Commit

Permalink
Array injection on directive
Browse files Browse the repository at this point in the history
  • Loading branch information
maxigimenez committed Feb 3, 2016
1 parent c86abb5 commit abb933d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "angular-atomic-notify",
"version": "1.0.3",
"version": "1.0.4",
"homepage": "https://github.com/maxigimenez/angular-atomic-notify",
"authors": [
"Maxi Gimenez <gimenez.maxi@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion dist/angular-atomic-notify.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 package.json
@@ -1,6 +1,6 @@
{
"name": "angular-atomic-notify",
"version": "1.0.3",
"version": "1.0.4",
"description": "Atomic notifications for your Angular project!",
"scripts": {},
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions src/angular-atomic-notify.js
Expand Up @@ -4,7 +4,7 @@ angular
.module('atomic-notify', [])
.config(['$provide', function($provide){
$provide.provider('atomicNotify', function(){

var settings = {
delay: 0,
useicon: true
Expand Down Expand Up @@ -125,7 +125,7 @@ angular
scope: {},
restrict: 'E',
link: link,
controller: controller
controller: ['$scope', controller]
};

}]);
}]);

0 comments on commit abb933d

Please sign in to comment.