fix(cloudfunc) ";" -> ","

This commit is contained in:
coderaiser 2013-09-23 10:02:50 +00:00
parent aa0d7ffa26
commit 881578f087

View file

@ -42,8 +42,8 @@ var Util, exports, CloudFunc = {};
CloudFunc.RIGHTPANEL = 'right';
CloudFunc.formatMsg = function(pMsg, pName, pStatus) {
var status = pStatus || 'ok';
msg = pMsg + ': ' + status + '("' + pName + '")';
var status = pStatus || 'ok',
msg = pMsg + ': ' + status + '("' + pName + '")';
return msg;
};