[Plugin: Comment Rating] Comment-Rating Fix in Javascript
-
To fix Comment-Rating to update without having to refresh the page put the following on line 52 in ck-karma.js:
response[0] = response[0].replace(‘\r\ndone’,’done’);
When you’re done it should look like:
function ckratingHandleResponse(){
if(ckratingXhr.readyState == 4){
var response = ckratingXhr.responseText.split(‘|’);
response[0] = response[0].replace(‘\r\ndone’,’done’);
- The topic ‘[Plugin: Comment Rating] Comment-Rating Fix in Javascript’ is closed to new replies.