Show More
@@ -328,10 +328,10 b' var getLineNo = function(tr) {' | |||
|
328 | 328 | var o = tr.children[0].id.split('_'); |
|
329 | 329 | var n = tr.children[1].id.split('_'); |
|
330 | 330 | |
|
331 |
if (n.length |
|
|
332 | line = n[1]; | |
|
333 |
} else if (o.length |
|
|
334 | line = o[1]; | |
|
331 | if (n.length >= 2) { | |
|
332 | line = n[n.length-1]; | |
|
333 | } else if (o.length >= 2) { | |
|
334 | line = o[n.length-1]; | |
|
335 | 335 | } |
|
336 | 336 | |
|
337 | 337 | return line |
General Comments 0
You need to be logged in to leave comments.
Login now