Skip to content

Commit 52cbd2c

Browse files
committed
update configs
1 parent ce0ff5a commit 52cbd2c

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

.jsbeautifyrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"good_stuff": true
2424
},
2525
"css": {
26-
"indent_size": 4,
26+
"indent_size": 2,
2727
"indent_char": " ",
2828
"indent_with_tabs": false,
2929
"eol": "\n",

README.md

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

9494
| Date | Version | Description |
9595
| ----------- | ------- | ----------- |
96-
| 2017-04-11 | v1.0.9 | Maintenance |
96+
| 2017-04-11 | v1.0.10 | Maintenance |
9797
| 2017-01-31 | v1.0.3 | Removed polyfill dependency |
9898
| 2017-01-22 | v1.0.2 | Maintenance |
9999
| 2017-01-22 | v1.0.0 | Official release |

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-web-notification",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"description": "Web Notifications made easy.",
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-
| 2017-04-11 | v1.0.9 | Maintenance |
3+
| 2017-04-11 | v1.0.10 | Maintenance |
44
| 2017-01-31 | v1.0.3 | Removed polyfill dependency |
55
| 2017-01-22 | v1.0.2 | Maintenance |
66
| 2017-01-22 | v1.0.0 | Official release |

docs/example/example.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
.notification-form {
32
padding: 10px;
43
width: 60%;

docs/index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
<!DOCTYPE html>
22
<html>
3+
34
<head>
45
<title>Web Notification Example</title>
56
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
67
<script type="text/javascript" src="https://rawgit.com/sagiegurari/simple-web-notification/master/web-notification.js"></script>
78
<script type="text/javascript" src="example/example.js"></script>
89

9-
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
10-
<link href="example/example.css" rel="stylesheet"/>
10+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
11+
<link href="example/example.css" rel="stylesheet" />
1112
</head>
13+
1214
<body>
1315
<form class="notification-form">
1416
<div class="form-group">
1517
<label for="title">Title</label>
16-
<input type="text" class="form-control" id="title" placeholder="Notification Title"/>
18+
<input type="text" class="form-control" id="title" placeholder="Notification Title" />
1719
</div>
1820
<div class="form-group">
1921
<label for="message">Notification Text</label>
@@ -22,4 +24,5 @@
2224
<button type="button" class="show-button btn btn-primary" notification-title="title" notification-text="text">Show Notification</button>
2325
</form>
2426
</body>
27+
2528
</html>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-web-notification",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"description": "Web Notifications made easy.",
55
"author": {
66
"name": "Sagie Gur-Ari",

0 commit comments

Comments
 (0)