Skip to content

Commit f28e727

Browse files
committed
fix typo and bump version
1 parent 5cb9163 commit f28e727

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

angular-websocket.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ module.provider('WebSocket', function() {
4949
onerror: addListener('error'),
5050
new: function(uri, protocols) {
5151
protocols = Array.prototype.slice.call(arguments, 1);
52-
ws = new WebSocket(url, protocols);
52+
ws = new WebSocket(uri, protocols);
5353
return this;
5454
},
5555
close: function() {

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-websocket",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"homepage": "https://github.com/gdi2290/angular-websocket",
55
"authors": [
66
"gdi2290 <github@gdi2290.com>"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-websocket",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"main": "angular-websocket.js",
55
"description": "WebSocket service for Angular.js",
66
"homepage": "https://github.com/gdi2290/angular-websocket",

0 commit comments

Comments
 (0)