mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
fix(cloudfunc) ";" -> ","
This commit is contained in:
parent
aa0d7ffa26
commit
881578f087
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue