Current status: Solved. . Done
IE7 fix on is_clone_field function
  • Hey Elliot,

    Theres a bug in IE7 that stops flexible layout working. It's in js/input-actions.js, line 1266 which was:
    if( input.attr('name').indexOf('[999]') != -1 )

    needs to be
    if( input.attr('name') && input.attr('name').indexOf('[999]') != -1 )

    as input.attr('name') is undefined in some cases in IE7 (which might be a bigger bug in itself, but i'll worry about that when I come to it...)
  • Thanks mate,

    I'll add this in the next version
  • Fixed in 3.4.0 (to be released soon)