Support

Account

Home Forums Add-ons Gallery Field Gallery drag n drop not working Reply To: Gallery drag n drop not working

  • Hey thanks,

    as far as my knowledge about debugging goes,
    on firebug this is the one error i get in
    http://…./wp-content/plugins/acf-flexible-content/js/input.js?ver=1.0.1:

    TypeError: acf.fields.repeater is undefined
    acf.fields.repeater.set_column_widths( $(this) );
    

    This is within:

     /*
    * acf/setup_fields
    *
    * @description:
    * @since: 3.5.8
    * @created: 17/01/13
    */
    $(document).live('acf/setup_fields', function(e, postbox){
    $(postbox).find('.acf_flexible_content').each(function(){
    var div = $(this);
    // sortable
    _flex.add_sortable( div );
    // set column widths
    $(div).find('.layout').each(function(){
    acf.fields.repeater.set_column_widths( $(this) );
    });
    });
    });