Thanks for that, I've added a check for preventDefault. -- Luke
On Fri, Aug 13, 2010 at 1:58 PM, William <[email protected]> wrote: > On Aug 13, 1:41 pm, Luke Mahé <[email protected]> wrote: > > I haven't really tested it on > > IE so feel free to help me out :) > > > great library thanks Luke! > > I gave it a go on IE8 and got an error because preventDefault() isn't > supported on IE DOM events, so you'll have to test whether it exists > before calling it: > > if (that.getDraggable()) { > e.preventDefault(); // Error: Object doesn't support this > property or method > e.returnValue = false; > } > > ... > > -- > You received this message because you are subscribed to the Google Groups > "Google Maps JavaScript API v3" group. > To post to this group, send email to > [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-maps-js-api-v3%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-maps-js-api-v3?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
