HCAS#39656 van de date's (en andere velden) wordt nu geen string meer gemaakt in getInnerText()
svn path=/Website/branches/v2016.3/; revision=32935
This commit is contained in:
@@ -258,13 +258,16 @@ var sorttable = {
|
||||
return node.getAttribute("sorttable_customkey");
|
||||
}
|
||||
else if (typeof node.textContent != 'undefined' && !hasInputs) {
|
||||
return prefix + node.textContent.replace(/^\s+|\s+$/g, '') + postfix;
|
||||
return (hasFontAwesome ? (prefix + node.textContent.replace(/^\s+|\s+$/g, '') + postfix)
|
||||
: node.textContent.replace(/^\s+|\s+$/g, ''));
|
||||
}
|
||||
else if (typeof node.innerText != 'undefined' && !hasInputs) {
|
||||
return prefix + node.innerText.replace(/^\s+|\s+$/g, '') + postfix;
|
||||
return (hasFontAwesome ? (prefix + node.innerText.replace(/^\s+|\s+$/g, '') + postfix)
|
||||
: node.innerText.replace(/^\s+|\s+$/g, ''));
|
||||
}
|
||||
else if (typeof node.text != 'undefined' && !hasInputs) {
|
||||
return prefix + node.text.replace(/^\s+|\s+$/g, '') + postfix;
|
||||
return (hasFontAwesome ? (prefix + node.text.replace(/^\s+|\s+$/g, '') + postfix)
|
||||
: node.text.replace(/^\s+|\s+$/g, ''));
|
||||
}
|
||||
else {
|
||||
switch (node.nodeType) {
|
||||
|
||||
Reference in New Issue
Block a user