Bug fixes e.g. csp and other

This commit is contained in:
Dennis Eichhorn 2017-11-11 15:02:40 +01:00
parent 954aa70704
commit 055df9df55
3 changed files with 3 additions and 3 deletions

View File

@ -129,6 +129,8 @@
this.reset(group); this.reset(group);
} }
} }
return true;
}; };
/** /**

View File

@ -230,8 +230,6 @@
'Request: ' + JSON.stringify(form.getData()) + '\n' + 'Request: ' + JSON.stringify(form.getData()) + '\n' +
'Response: ' + xhr.response 'Response: ' + xhr.response
); );
return false;
} }
}); });

View File

@ -294,7 +294,7 @@
*/ */
jsOMS.hash = function (str) jsOMS.hash = function (str)
{ {
let res = 0, let res = 0;
const len = str.length; const len = str.length;
for (let i = 0; i < len; i++) { for (let i = 0; i < len; i++) {