[jQuery] [FIX] metadata fix proposed
Firefox 3.1b2 returns classname with \n. All other browsers don't. In metadata plugin the default regexp is /({.*})/ I fixed this problem with this regexp /({[\s\S]*})/ so defaults : { type: 'class', name: 'metadata',
[jQuery] Re: Metadata and firefox 3.1beta2
if someone is interested https://bugzilla.mozilla.org/show_bug.cgi?id=476809
[jQuery] Metadata and firefox 3.1beta2
Firefox 3.1b2 has a problem with \n. Test OK Test KO you can use this solution to fix this bug: cre.exec( string.replace("\n","") );