##// END OF EJS Templates
Убрал лишнюю переменную.
ritsufag -
r225:8f75f6bd default
parent child Browse files
Show More
@@ -30,9 +30,10 b' function addRefLinkMap() {'
30 30 if(typeof refMap[pNum] === 'object') {
31 31 //append refmap panel
32 32 if(!$("#refmap_"+pNum).length) {
33 var data = label_replies + refMap[pNum].toString().replace(/(\d+)/g, ' <a href="/jump/$1/">>>$1</a>');
34 $('#'+pNum+'').find('.message').after($('<div class="refmap" id="refmap_'+pNum+'">'+data+'</div>'));
33 $('#'+pNum+'').find('.message').after(
34 $('<div class="refmap" id="refmap_'+pNum+'">'+label_replies + refMap[pNum].toString().replace(/(\d+)/g, ' <a href="/jump/$1/">>>$1</a>')+'</div>')
35 );
35 36 }
36 37 }
37 38 }
38 }
39 } No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now