Skip to content

Commit da71a38

Browse files
committed
editor config
1 parent a799e0d commit da71a38

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.editorconfig

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ root = true
44
[*]
55
end_of_line = lf
66
insert_final_newline = true
7+
trim_trailing_whitespace = true
78
indent_style = space
89
indent_size = 2
910

10-
[*.{js,json,html,htm,css,scss,less,md,txt,properties,yml,go}]
11+
[*.{js,json,html,htm,css,scss,less,md,txt,properties,yml,go,lua,java}]
1112
charset = utf-8
1213

13-
[*.{js,go}]
14+
[*.{js,go,lua,java}]
1415
indent_size = 4

.jscs.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
"disallowKeywordsOnNewLine": [
1919
"else"
2020
],
21-
"disallowKeywords": ["with"],
21+
"disallowKeywords": [
22+
"with"
23+
],
2224
"disallowMixedSpacesAndTabs": true,
2325
"disallowMultipleLineBreaks": true,
2426
"disallowMultipleLineStrings": true,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ See full docs at: [API Docs](docs/api.md)
9797

9898
| Date | Version | Description |
9999
| ----------- | ------- | ----------- |
100-
| 2015-11-04 | v0.0.39 | Maintenance |
100+
| 2015-11-05 | v0.0.40 | Maintenance |
101101
| 2015-09-26 | v0.0.31 | Update bower dependencies |
102102
| 2015-09-26 | v0.0.30 | Added 'onClick' option to enable adding onclick event handler for the notification |
103103
| 2015-09-02 | v0.0.29 | 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": "0.0.39",
3+
"version": "0.0.40",
44
"description": "AngularJS service for displaying web notifications.",
55
"authors": [
66
"Sagie Gur-Ari <[email protected]>"

example/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<html data-ng-app="exampleApp">
22
<head>
3-
<title>Angular Web Notification Example</title>
4-
<script type="text/javascript" src="../bower_components/angular/angular.js"></script>
5-
<script type="text/javascript" src="../bower_components/HTML5-Desktop-Notifications2/desktop-notify.js"></script>
6-
<script type="text/javascript" src="../angular-web-notification.js"></script>
7-
<script type="text/javascript" src="example.js"></script>
3+
<title>Angular Web Notification Example</title>
4+
<script type="text/javascript" src="../bower_components/angular/angular.js"></script>
5+
<script type="text/javascript" src="../bower_components/HTML5-Desktop-Notifications2/desktop-notify.js"></script>
6+
<script type="text/javascript" src="../angular-web-notification.js"></script>
7+
<script type="text/javascript" src="example.js"></script>
88
</head>
99
<body>
10-
<button class="show-button"></button>
10+
<button class="show-button"></button>
1111
</body>
12-
</html>
12+
</html>

0 commit comments

Comments
 (0)