Merge pull request #576 from 32graham/toastr

Add toastr
This commit is contained in:
Guy Bedford
2015-10-03 18:17:53 +02:00
3 changed files with 31 additions and 0 deletions
@@ -0,0 +1,15 @@
{
"main": "toastr",
"format": "global",
"dependencies": {
"jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css"
},
"files": ["toastr.js", "toastr.css", "build"],
"shim": {
"toastr": {
"deps": ["jquery", "./toastr.css!"],
"exports": "toastr"
}
}
}
@@ -0,0 +1,15 @@
{
"main": "toastr",
"format": "global",
"dependencies": {
"jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css"
},
"files": ["toastr.js", "build"],
"shim": {
"toastr": {
"deps": ["jquery", "./build/toastr.css!"],
"exports": "toastr"
}
}
}