From 0395809510f1bee33fc9ded4a035a395d80cf7d8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 10 Jul 2005 12:12:35 +0000 Subject: [PATCH] bug #1234098, invalid normal cursor style --- ChangeLog | 1 + libraries/functions.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 424f2330d..205d39237 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ $Source$ 2005-07-10 Marc Delisle * libraries/display_tbl.lib.php: bug #1235473 display_tbl.lib.php, Undefined variable order_img + * libraries/functions.js: bug #1234098, invalid "normal" cursor style 2005-07-06 Marc Delisle * db_search.php: bug #1233349, db search in MySQL 5.0.x on fields diff --git a/libraries/functions.js b/libraries/functions.js index 8a1805723..096980d96 100644 --- a/libraries/functions.js +++ b/libraries/functions.js @@ -455,7 +455,7 @@ function setPointer(theRow, theRowNum, theAction, theDefaultColor, thePointerCol if (theAction == "over" || theAction == "click") { theRow.style.cursor='pointer'; } else { - theRow.style.cursor='normal'; + theRow.style.cursor='default'; } // 2. Gets the current row and exits if the browser can't get it