Bug Tracker

Opened 17 years ago

Closed 16 years ago

Last modified 12 years ago

#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 scott.gonzal)

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 scott.gonzal

Description: modified (diff)
need: Review
Resolution: wontfix
Status: newclosed

Interface is no longer supported; consider switching to jQuery UI.

Note: See TracTickets for help on using tickets.