Sha256: f47f87cdae3ae47f83eae5647a70b22770d27496b6bd0786676066b601b47a5a
Contents?: true
Size: 485 Bytes
Versions: 28
Compression:
Stored size: 485 Bytes
Contents
$(document).on 'click', 'a.add-fields', -> # add image on sections form $collectionContainer = $(@).closest('.file-collection-container') maxFiles = $collectionContainer.data('max') numberOfFiles = $collectionContainer.find('.product-image:not(.hidden)').length + 1 if maxFiles != 0 && numberOfFiles > maxFiles $(@).addClass('hidden') $(document).on 'click', '.btn.btn-danger.remove-fields', -> # remove image on sectiosn form $('a.add-fields').removeClass 'hidden'
Version data entries
28 entries across 28 versions & 1 rubygems