Skip to content

Commit d92a06f

Browse files
committed
update build
1 parent e8df5ea commit d92a06f

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.bithoundrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@
2525
"grunt-cli",
2626
"grunt-concurrent",
2727
"grunt-contrib-clean",
28+
"grunt-contrib-csslint",
2829
"grunt-contrib-jshint",
2930
"grunt-coveralls",
3031
"grunt-eslint",
3132
"grunt-force-task",
3233
"grunt-gitdown",
34+
"grunt-htmllint",
3335
"grunt-jsbeautifier",
3436
"grunt-jscs",
3537
"grunt-jsdoc-to-markdown",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ See [contributing guide](.github/CONTRIBUTING.md)
108108

109109
| Date | Version | Description |
110110
| ----------- | ------- | ----------- |
111-
| 2016-09-12 | v1.0.11 | Maintenance |
111+
| 2016-09-13 | v1.0.12 | Maintenance |
112112
| 2016-09-10 | v1.0.6 | Default to website favicon.ico if icon not provided in options |
113113
| 2016-09-07 | v1.0.4 | Callback is now optional |
114114
| 2016-09-07 | v1.0.3 | Maintenance |

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-web-notification",
3-
"version": "1.0.11",
3+
"version": "1.0.12",
44
"description": "AngularJS service for displaying web notifications.",
55
"authors": [
66
"Sagie Gur-Ari <[email protected]>"

docs/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Date | Version | Description |
22
| ----------- | ------- | ----------- |
3-
| 2016-09-12 | v1.0.11 | Maintenance |
3+
| 2016-09-13 | v1.0.12 | Maintenance |
44
| 2016-09-10 | v1.0.6 | Default to website favicon.ico if icon not provided in options |
55
| 2016-09-07 | v1.0.4 | Callback is now optional |
66
| 2016-09-07 | v1.0.3 | Maintenance |

docs/index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!DOCTYPE html>
12
<html data-ng-app="exampleApp">
23

34
<head>
@@ -8,15 +9,15 @@
89
<script type="text/javascript" src="https://rawgit.com/sagiegurari/angular-web-notification/master/angular-web-notification.js"></script>
910
<script type="text/javascript" src="example/example.js"></script>
1011

11-
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
12-
<link href="example/example.css" rel="stylesheet">
12+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
13+
<link href="example/example.css" rel="stylesheet"/>
1314
</head>
1415

1516
<body>
1617
<form class="notification-form" ng-controller="exampleForm">
1718
<div class="form-group">
1819
<label for="title">Title</label>
19-
<input type="text" class="form-control" id="title" placeholder="Notification Title" ng-model="title">
20+
<input type="text" class="form-control" id="title" placeholder="Notification Title" ng-model="title"/>
2021
</div>
2122
<div class="form-group">
2223
<label for="message">Notification Text</label>

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-web-notification",
3-
"version": "1.0.11",
3+
"version": "1.0.12",
44
"description": "AngularJS service for displaying web notifications.",
55
"author": {
66
"name": "Sagie Gur-Ari",
@@ -42,11 +42,13 @@
4242
"grunt-cli": "latest",
4343
"grunt-concurrent": "latest",
4444
"grunt-contrib-clean": "latest",
45+
"grunt-contrib-csslint": "latest",
4546
"grunt-contrib-jshint": "latest",
4647
"grunt-coveralls": "latest",
4748
"grunt-eslint": "latest",
4849
"grunt-force-task": "latest",
4950
"grunt-gitdown": "latest",
51+
"grunt-htmllint": "latest",
5052
"grunt-jsbeautifier": "latest",
5153
"grunt-jscs": "latest",
5254
"grunt-jsdoc-to-markdown": "latest",

0 commit comments

Comments
 (0)