[Rt-commit] r3491 - in rt/branches/3.5-TESTING: . html/NoAuth/js

trs at bestpractical.com trs at bestpractical.com
Sun Jul 17 19:22:42 EDT 2005


Author: trs
Date: Sun Jul 17 19:22:41 2005
New Revision: 3491

Modified:
   rt/branches/3.5-TESTING/   (props changed)
   rt/branches/3.5-TESTING/html/NoAuth/js/util.js
Log:
 r5164 at wintermute:  tom | 2005-07-17 14:35:04 -0400
 Make the state of rollup links more accessible to users without CSS


Modified: rt/branches/3.5-TESTING/html/NoAuth/js/util.js
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/js/util.js	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/js/util.js	Sun Jul 17 19:22:41 2005
@@ -18,6 +18,7 @@
         if (state == 'shown') {
             show(e);
             link.className = link.className.replace(/\s?\brolled-up\b/, '');
+            link.innerHTML = 'v';
         }
         else if (state == 'hidden') {
             hide(e);
@@ -25,6 +26,8 @@
                 link.className += ' rolled-up';
             else
                 link.className = 'rolled-up';
+
+            link.innerHTML = '^';
         }
     }
 }


More information about the Rt-commit mailing list