Parent Directory
|
Revision Log
|
Revision Graph
initial commit of the Acquia Marina theme
| 1 | // $Id$ |
| 2 | |
| 3 | Drupal.behaviors.tntIEFixes = function (context) { |
| 4 | // IE6 & less-specific functions |
| 5 | // Add hover class to primary menu li elements on hover |
| 6 | if ($.browser.msie && ($.browser.version < 7)) { |
| 7 | $('#primary-menu li').hover(function() { |
| 8 | $(this).addClass('hover'); |
| 9 | }, function() { |
| 10 | $(this).removeClass('hover'); |
| 11 | }); |
| 12 | }; |
| 13 | }; |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |