diff --git a/LICENSE b/LICENSE index 349b6f3..60ce744 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 Invertase +Copyright (c) 2015-2016 Team FA 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 diff --git a/README.md b/README.md index 68c9592..76e2d5f 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,6 @@ Angular Toasty ================= **Angular Toasty** is a simple standalone AngularJS module with extensive features that provides growl-style alerts and messages for your app. -#### Demo - -[Check it out!](https://invertase.github.io/angular-toasty/example/) - #### Current Features * 3 Themes (Default, Material Design & Bootstrap 3) * Global/Individual timeouts @@ -22,6 +18,13 @@ Angular Toasty ```HTML bower install angular-toasty ``` + +###### Install from NPM: + +```HTML +npm install angular-toasty-npm +``` + ###### Add dependancies to HTML (AngularJS required) ```HTML @@ -175,4 +178,4 @@ $rootScope.$on('toasty-cleared', function(event, toast) { console.log(toast) }); #### Contributing -Please see the [contributing guidelines](https://github.com/invertase/angular-toasty/blob/master/CONTRIBUTING.md). +Please see the [contributing guidelines](https://github.com/teamfa/angular-toasty/blob/master/CONTRIBUTING.md). diff --git a/bower.json b/bower.json index 164b968..f0083e6 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "angular-toasty", "description": "A slick, simple, standalone AngularJS module with extensive features that provides growl-style alerts and messages for your app.", - "version": "1.0.5", + "version": "1.0.6", "main": [ "dist/angular-toasty.js", "dist/angular-toasty.css" @@ -16,12 +16,12 @@ "src" ], "dependencies": { - "angular": "~1.4.3" + "angular": "~1.6.0" }, - "homepage": "https://github.com/invertase/angular-toasty", + "homepage": "https://github.com/teamfa/angular-toasty", "repository": { "type": "git", - "url": "git://github.com/invertase/angular-toasty.git" + "url": "git://github.com/teamfa/angular-toasty.git" }, "license": "MIT" } diff --git a/example/index.html b/example/index.html index 3cce204..0f5ec5c 100644 --- a/example/index.html +++ b/example/index.html @@ -53,9 +53,9 @@
@@ -115,8 +115,8 @@

- - + + diff --git a/index.js b/index.js new file mode 100644 index 0000000..f6c20fc --- /dev/null +++ b/index.js @@ -0,0 +1,2 @@ +require('./dist/angular-toasty.min.js'); +module.exports = 'angular-toasty'; \ No newline at end of file diff --git a/package.json b/package.json index 5abe762..a58b12e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "angular-toasty", - "version": "1.0.5", - "author": "Invertase", + "name": "angular-toasty-npm", + "version": "1.0.7", + "author": "Warren Dodsworth", "devDependencies": { "bower": "~1.4.1", "del": "^1.2.0", @@ -17,4 +17,4 @@ "run-sequence": "^1.1.2", "yargs": "~3.16.1" } -} +} \ No newline at end of file