Results 1 to 6 of 6

Thread: Chrome CSS Drop Down Menu Firefox Bug

  1. #1
    Join Date
    Oct 2006
    Posts
    60
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Chrome CSS Drop Down Menu Firefox Bug

    1) Script Title: Chrome CSS Drop Down Menu

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...rome/index.htm

    3) Describe problem: There is a bug with Firefox,
    when u hover a submenu it doesn't close the menu after the mouse is out of region. It closes only if u hover again at menu..
    I noticed this is the case at chromemenu.zip which i downloaded.
    But at site there is no problem. Are there different versions of the script?

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Actually, this was a bug that was fixed a few weeks ago, both on the DD demo you see and in the zip file. You can verify this by checking that chrome.js within the zip file is last modifed Nov 13th, 2006.

  3. #3
    Join Date
    Oct 2006
    Posts
    60
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Oops, sorry for that, i guess i have tried a previous downloaded version. Everything up and running.

    I know u don't have a mac but if u could fix a minor bug with safari it would be a perfect script(with some minor css mods i could make).

    The problem with safari is that it keeps re-appearing the sub-menu while u are moving the mouse over one menu item, instead of just leaving it open.

    Thanx for your responce!

  4. #4
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Regarding the Safari issue, it looks like it's with the optional swipe effect. If I find the time I'll see if I can find a fix, and update this thread when that happens.

  5. #5
    Join Date
    Oct 2006
    Posts
    60
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Any luck with Safari issue yet?

    Is it a simple way to check if Safari and disable swipe effect?
    Sorry for posting that here....
    Last edited by ddadmin; 03-01-2007 at 06:10 PM.

  6. #6
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Quote Originally Posted by psilos View Post
    Is it a simple way to check if Safari and disable swipe effect?
    Sorry for posting that here....
    Now why didn't I think of that? Yep, you can disable the swipe effect in Safari (until I get to fixing it) by editing the below line inside chrome.js:

    Code:
    if (this.enableswipe==1 && !/Safari/i.test(navigator.userAgent) ){
    if (typeof this.swipetimer!="undefined")
    clearTimeout(this.swipetimer)
    obj.clip="rect(0 auto 0 0)" //hide menu via clipping
    this.bottomclip=0
    this.swipeeffect()
    }
    The code in red is new.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •