Tweaks for the last two pull requests

This commit is contained in:
Jeff Parsons 2016-03-23 17:18:52 -07:00
commit 9db5f27b71
6 changed files with 121 additions and 120 deletions

View file

@ -41,10 +41,11 @@ if (NODE) {
}
/**
* savePC(idMachine, sPCJSFile)
* savePC(idMachine, sPCJSFile, callback)
*
* @param {string} idMachine
* @param {string} sPCJSFile
* @param {function(Object)} [callback]
* @return {boolean} true if successful, false if error
*/
function savePC(idMachine, sPCJSFile, callback)

View file

@ -201,7 +201,7 @@ web.getResource = function(sURL, dataPost, fAsync, done)
resources(sURL, function(sResource, nErrorCode) {
if (done) done(sURL, sResource, nErrorCode);
});
return;
return response;
}
if (DEBUG) {