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

Commit

Permalink
fixes #11
Browse files Browse the repository at this point in the history
  • Loading branch information
carlospliego committed Jan 22, 2016
1 parent ac91859 commit 2d8fe9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion base.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ angular.module('angularBase').service('Base', ['$rootScope', '$http', '$q', '$an
method: method,
url: url,
data: data,
header: (header) ? header : "{Content-Type: application/json}",
headers: (header) ? header : "{Content-Type: application/json}",
cache: this.config.cache
}).success(function (data, status, headers) {
var results = {};
Expand Down
2 changes: 1 addition & 1 deletion dist/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ angular.module('angularBase').service('Base', ['$rootScope', '$http', '$q', '$an
method: method,
url: url,
data: data,
header: (header) ? header : "{Content-Type: application/json}",
headers: (header) ? header : "{Content-Type: application/json}",
cache: this.config.cache
}).success(function (data, status, headers) {
var results = {};
Expand Down
2 changes: 1 addition & 1 deletion dist/base.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2d8fe9b

Please sign in to comment.