aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/config.js
diff options
context:
space:
mode:
authorChristopher <kondou@ts.unde.re>2013-08-20 12:45:10 -0700
committerChristopher <kondou@ts.unde.re>2013-08-20 12:45:10 -0700
commit90da518e3e24e088db9e2c7b356fda74266d004d (patch)
tree90a70e40faac859f7a926ece109a40c9a915e10a /core/js/config.js
parentde949b1caa4491a8016ed5e609fc781526fea54d (diff)
parentedd92e4c09151238a89816186914f9382293ab9b (diff)
downloadnextcloud-server-90da518e3e24e088db9e2c7b356fda74266d004d.tar.gz
nextcloud-server-90da518e3e24e088db9e2c7b356fda74266d004d.zip
Merge pull request #4262 from owncloud/fix_jslint_kondou
Fix some JSLint warnings
Diffstat (limited to 'core/js/config.js')
-rw-r--r--core/js/config.js4
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);
}