Skip to content

Instantly share code, notes, and snippets.

@lsongdev
Created January 5, 2015 07:10
Show Gist options
  • Select an option

  • Save lsongdev/b97820ecd1c21c012f67 to your computer and use it in GitHub Desktop.

Select an option

Save lsongdev/b97820ecd1c21c012f67 to your computer and use it in GitHub Desktop.
app.factory 'CustomHttp', ($q)->
(originHttpPromise)->
deferred = $q.defer()
originHttpPromise
.success (data)->
deferred.resolve data
.error (err)->
deferred.reject err
deferred.promise
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment