aboutsummaryrefslogtreecommitdiffstats
path: root/src/service/xhr.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/xhr.js')
-rw-r--r--src/service/xhr.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service/xhr.js b/src/service/xhr.js
index 1de72b22..18f695e6 100644
--- a/src/service/xhr.js
+++ b/src/service/xhr.js
@@ -129,7 +129,7 @@ angularServiceInject('$xhr', function($browser, $error, $log, $updateView){
return function(method, url, post, callback){
if (isFunction(post)) {
callback = post;
- post = _null;
+ post = null;
}
if (post && isObject(post)) {
post = toJson(post);