Skip to content

Commit a218576

Browse files
committed
v0.5.0
1 parent d00e07d commit a218576

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-socket-io",
3-
"version": "0.4.1",
3+
"version": "0.5.0",
44
"main": "socket.js",
55
"dependencies": {
66
"angular": "~1.2.6"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-socket-io",
3-
"version": "0.4.1",
3+
"version": "0.5.0",
44
"main": "socket.js",
55
"directories": {
66
"test": "test"

socket.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* @license
3-
* angular-socket-io v0.4.1
3+
* angular-socket-io v0.5.0
44
* (c) 2014 Brian Ford http://briantford.com
55
* License: MIT
66
*/
@@ -35,7 +35,7 @@ angular.module('btford.socket-io', []).
3535
var addListener = function (eventName, callback) {
3636
socket.on(eventName, callback.__ng = asyncAngularify(socket, callback));
3737
};
38-
38+
3939
var addOnceListener = function (eventName, callback) {
4040
socket.once(eventName, callback.__ng = asyncAngularify(socket, callback));
4141
};

socket.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

socket.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)