STEPS to reproduce:
1) from the Module set the character limit to any number (i.e. 120)
2) create a testimonial that has over 120 characters
3) go to the front-end and observe the text before clicking the Read More. Observe the very last character (120th character)
4) Now click on the Read More button and observe that same character.
Hi George,
Thank you!
I edited it.
default.php file (modules/mod_jux_testimonial/tmpl) line 54
var h = content.substr(showChar-1, content.length - showChar);
=>
var h = content.substr(showChar, content.length - showChar);
Thanks! please check back.