Bug Tracker

Ticket #1358 (closed bug: duplicate)

Opened 2 years ago

Last modified 2 years ago

Safari 1.3 still crashes with version 1.1.3.1

Reported by: tom.kentell Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.1.4 Component: build
Version: 1.1.3 Keywords: Safari, crashing, 1.1.3, 1.1.3.1
Cc: Needs: Review

Description

Just tried the new version with Safari, i included it on a page with nothing else on and it crashed my version of Safari 1.3.2 (v312.6).

I Installed version 1.1.3 yesterday and it also crashed Safari a few times but it then randomly seemed to stop crashing with the following code:

$(document).ready(function() {

$("#mainnav>ul>li:last-child ul").css("left", "-9999px"); $("#mainnav>ul>li:last-child ul").css("width", "167px"); $("#mainnav>ul>li:last-child ul").css("display", "none"); $("#mainnav>ul>li:last-child").focus(slideMenuDown, slideMenuUp); $("#mainnav>ul>li:last-child").hover(slideMenuDown, slideMenuUp);

});

function slideMenuDown() {

$(this).addClass("currentdrop"); $("ul", this).css("left", "auto"); $("ul", this).slideDown("slow");

}

function slideMenuUp() {

$("ul", this).slideUp(function(){

$(this.parentNode).removeClass("currentdrop"); $("ul", this).css("left", "-9999px");

});

}

Attachments

Change History

Changed 2 years ago by john

  • status changed from new to closed
  • resolution set to duplicate

Duplicate of #1331.

Note: See TracTickets for help on using tickets.