diff options
author | kondou <kondou@ts.unde.re> | 2013-07-31 21:21:02 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-07-31 21:21:02 +0200 |
commit | aaf0fec9f54bc6f9eef5df00441d593e053ee74b (patch) | |
tree | ca65f4c20b8d1e698d815a3b5970926023093478 /core/js/config.js | |
parent | 50101a85a63f29c47abe325aecb3af26bc8a96d1 (diff) | |
download | nextcloud-server-aaf0fec9f54bc6f9eef5df00441d593e053ee74b.tar.gz nextcloud-server-aaf0fec9f54bc6f9eef5df00441d593e053ee74b.zip |
Fix some JSLint warnings
Diffstat (limited to 'core/js/config.js')
-rw-r--r-- | core/js/config.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/config.js b/core/js/config.js index 563df4e6632..52d1c3aee25 100644 --- a/core/js/config.js +++ b/core/js/config.js @@ -9,7 +9,7 @@ OC.AppConfig={ getCall:function(action,data,callback){ data.action=action; $.getJSON(OC.AppConfig.url,data,function(result){ - if(result.status='success'){ + if(result.status==='success'){ if(callback){ callback(result.data); } @@ -19,7 +19,7 @@ OC.AppConfig={ postCall:function(action,data,callback){ data.action=action; $.post(OC.AppConfig.url,data,function(result){ - if(result.status='success'){ + if(result.status==='success'){ if(callback){ callback(result.data); } |