Skip to content
This repository has been archived by the owner on Aug 13, 2021. It is now read-only.

Commit

Permalink
Merge pull request #54 from seth2810/master
Browse files Browse the repository at this point in the history
_request() was a private API deprecated as of v0.11 of the sails.io.js
  • Loading branch information
robwormald committed Apr 17, 2015
2 parents 5977f2c + 3c02b61 commit 5de50f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/ngsails.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ function createSailsBackend($browser, $window, $injector, $q, $timeout){
url = url || $browser.url();


$window.io.socket._request({
$window.io.socket.request({
method: method.toLowerCase(),
url: url,
data: fromJson(post),
Expand Down
2 changes: 1 addition & 1 deletion src/socketBackend.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function createSailsBackend($browser, $window, $injector, $q, $timeout){
url = url || $browser.url();


$window.io.socket._request({
$window.io.socket.request({
method: method.toLowerCase(),
url: url,
data: fromJson(post),
Expand Down

0 comments on commit 5de50f8

Please sign in to comment.