Closed (duplicate)
Project:
Administration menu
Version:
7.x-3.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
4 Apr 2013 at 12:46 UTC
Updated:
20 Nov 2014 at 21:36 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
tompagabor commentedHere is the patch.
Comment #2
jcisio commentedPatch works as expected. Tested with jQuery 1.10 too. Attached a more verbose patch.
Comment #3
tompagabor commentedI assigned this issue to myself, os anything is happening with this issue, i do my best to fix this bug.
Comment #4
joelpittetRTBC++ @tompagabor any eta on committing this to dev?
Comment #5
markhalliwellComment #6
Anonymous (not verified) commented@jcisio & @tompagabor, the only way that last patch works is if you add a "}" in the end:
Drupal.admin.behaviors.hover = function (context, settings, $adminMenu) {
// Hover emulation for IE 6.
- if ($.browser.msie && parseInt(jQuery.browser.version) == 6) {
+ if (navigator.appName == 'Microsoft Internet Explorer' && navigator.userAgent.match(/msie 6/i)) {
$('li', $adminMenu).hover(
function () {
$(this).addClass('iehover');
}); //close function and hover!
Don't really know the state of this issue, but I still have it with all up to date and greeny.
Comment #7
jcisio commentedCorrect issue status.
Comment #8
markhalliwellThis issue duplicates the efforts in #1892074: remove $.browser (Remove IE 6 support) (which were added to the project).
Comment #9
scott.browne commentedThanks for this quick fix. I found it very quickly too! Happy me!