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
@@ -230,13 +235,17 @@ var underscore = _.noConflict();
230
235
varcallbackMouseover=function(event){
231
236
varrow=newRowView({el: this}),
232
237
file=row.getFile(),
233
-
line=row.getLineNumber(),
234
-
displayLine=row.getDisplayLine();
238
+
line=row.getLineNumberInDiff(),
239
+
displayLine=row.getLineNumberInFile(),
240
+
displayLineText=displayLine;
241
+
if(displayLine<0){
242
+
displayLineText=-displayLine+' (deleted)';
243
+
}
235
244
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