Re: Gallery not works on IE6+SP2?

  •  08-01-2007, 7:11 AM

    Re: Gallery not works on IE6+SP2?

    I see the next code while looking page sources:
     
    
    

    var count = 10

    function Picture(oImage)

    {

    if (event.wheelDelta >= 120)

    count++;

    else if (event.wheelDelta <= -120)

    count--

    oImage.style.zoom = count + '0%';

    return false;

    }

    Please can you add semicolons after 10 and --
     
    Thanks
View Complete Thread