#969 closed bug (wontfix)
className animation has incorrect RegExp declaration
Reported by: | jeffkretz | Owned by: | stefan |
---|---|---|---|
Priority: | minor | Milestone: | 1.1.3 |
Component: | interface | Version: | 1.1 |
Keywords: | className | Cc: | |
Blocked by: | Blocking: |
Description (last modified by )
In animating a className, the ifx.js defines a Reg Exp to find the style rule on line 395:
var rule = new RegExp('.' + prop[p] + ' {');
This works in IE and FF, but Opera throws an exception: Statement on line 395: Reg Exp.prototype.compile: syntax error in pattern or string.
This appears to be because the Reg Exp declaration for Opera is more strict about backslash declarations to escape specific characters. The following change to the source code worked for me in IE6, IE7, FF and Opera:
var rule = new RegExp('\.' + prop[p] + ' \{');
Note that the backslash itself for the period and curly brace is then passed to the Reg Exp statement.
JK
Change History (1)
comment:1 Changed 16 years ago by
Description: | modified (diff) |
---|---|
need: | → Review |
Resolution: | → wontfix |
Status: | new → closed |
Interface is no longer supported; consider switching to jQuery UI.