Commit 83a6ed41f9b3d5b938d1d4eb937ca9cdc3d7761c
1 parent
e76668ba
update
Showing
1 changed file
with
2 additions
and
0 deletions
src/main/resources/templates/page/comment.html
| ... | ... | @@ -381,6 +381,7 @@ |
| 381 | 381 | rows.each(function(i,e){ |
| 382 | 382 | ids = ids + "," + e.value; |
| 383 | 383 | }) |
| 384 | + ids = ids.substring(1); | |
| 384 | 385 | comment(ids,1); |
| 385 | 386 | } |
| 386 | 387 | } else { |
| ... | ... | @@ -398,6 +399,7 @@ |
| 398 | 399 | rows.each(function(i,e){ |
| 399 | 400 | ids = ids + "," + e.value; |
| 400 | 401 | }) |
| 402 | + ids = ids.substring(1); | |
| 401 | 403 | comment(ids,2); |
| 402 | 404 | } |
| 403 | 405 | } else { | ... | ... |