From 10c2d0800d69932f856c46f04a04ba87acb39d39 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 21 Dec 2009 22:23:54 -0700 Subject: [PATCH] Bug #8787: Fix rownum variable name --- imp/js/DimpBase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/js/DimpBase.js b/imp/js/DimpBase.js index 253d3c5af..0487e5bab 100644 --- a/imp/js/DimpBase.js +++ b/imp/js/DimpBase.js @@ -1622,7 +1622,7 @@ var DimpBase = { case Event.KEY_BACKSPACE: r = sel.get('dataob'); if (e.shiftKey) { - this.moveSelected((r.last().rownum == this.viewport.getMetaData('total_rows')) ? (r.first().VP_rownum - 1) : (r.last().VP_rownum + 1), true); + this.moveSelected((r.last().VP_rownum == this.viewport.getMetaData('total_rows')) ? (r.first().VP_rownum - 1) : (r.last().VP_rownum + 1), true); } this.deleteMsg({ vs: sel }); e.stop(); -- 2.11.0