Rhyzz / repeatable-fields

Repeatable Fields

Home Page:http://www.rhyzz.com/repeatable-fields.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't call default after add function

andymb opened this issue · comments

Hi, I think there's a bug in line 85 preventing my after add function calling the default.

Line 85 is self.settings.after_add(container, new_row, self.settings.after_add);

Shouldn't it be self.settings.after_add(container, new_row, self.after_add); ?

self.settings.after_add refers to a custom function passed by the caller.

If you want to call the default function from your custom function, call it using $.fn.repeatable_fields().after_add(container, new_row)