Skip to content
Snippets Groups Projects
Commit 7116c52b authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Merge branch 'dd_lightbar_menu_substrWithAttrCodes_len_0' into 'master'

dd_lightbar_menu.js: Fix for substrWithAttrCodes(): If the given length is 0, then just return an empty string

See merge request !348
parents 5fec62b4 04c2b83d
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -3560,6 +3560,8 @@ function substrWithAttrCodes(pStr, pStartIdx, pLen)
if (typeof(pStartIdx) !== "number")
return "";
var len = typeof(pLen) === "number" ? pLen : console.strlen(pStr)-pStartIdx;
if (len <= 0)
return "";
if ((pStartIdx <= 0) && (pLen >= console.strlen(pStr)))
return pStr;
var startIdx = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment