You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -237,13 +242,17 @@ var underscore = _.noConflict();
237
242
varcallbackMouseover=function(event){
238
243
varrow=newRowView({el: this}),
239
244
file=row.getFile(),
240
-
line=row.getLineNumber(),
241
-
displayLine=row.getDisplayLine();
245
+
line=row.getLineNumberInDiff(),
246
+
displayLine=row.getLineNumberInFile(),
247
+
displayLineText=displayLine;
248
+
if(displayLine<0){
249
+
displayLineText=-displayLine+' (deleted)';
250
+
}
242
251
row.replaceLineNumberCellContent('<a title="Comment on this line" href="#L'+line+'" class="bubble"><span class="ui-icon ui-icon-comment"></span></a>');
0 commit comments