infinite-networks / InfiniteFormBundle

A collection of useful form types and extensions for Symfony.
169 stars 40 forks source link

collections.js "addToCollection" keep prototype scripts #54

Closed ghost closed 8 years ago

ghost commented 8 years ago

Currently the prototypes scripts are removed because the "keepscripts" parameter is not set to true. See: https://api.jquery.com/jquery.parsehtml/

Line 87 in collection.js need to be: $row = $($.parseHTML(html, document, true)); Instead of: $row = $($.parseHTML(html));