Fixing encoding issue

This commit is contained in:
Dulitha Wijewantha 2015-01-27 21:17:56 +05:30
parent c11eeaaccc
commit b6f7998db7

View File

@ -17,7 +17,7 @@
*/
function identifierFormatter(value, row, index) {
return [
'<a class="like" href="/cdm/devices/' + row["deviceType"] + '/' + value + '" title="Like">',
'<a class="like" href="/cdm/devices/' + row["deviceType"] + '/' + escape(value) + '" title="Like">',
value,
'</a>'
].join('');