Menu

#360 An error in FF 2.0.0.12

open
nobody
None
5
2008-03-06
2008-03-06
Jaaanosik
No

The calendar returns the date properly to the input field but in the meantime firebug reports the following error:

[Exception... "'Permission denied to get property HTMLDivElement.parentNode' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "<unknown>" data: no]

Line 0

Discussion

  • chadsmith729

    chadsmith729 - 2008-04-12

    Logged In: YES
    user_id=1761370
    Originator: NO

    I have the same issue, I thought it was because I am using an older version. I updated the latest and it's still broke.

     
  • Nobody/Anonymous

    This can be fixed by wrapping the line "related = related.parentNode;" with a "try" statement:

    try {
    related = related.parentNode;
    }
    catch(e) { return false; }

    ... around line 131 of calendar.js

     

Log in to post a comment.