tripal.file.js 645 B

1234567891011121314151617181920
  1. (function($) {
  2. Drupal.behaviors.TripalFile = {
  3. attach: function (context, settings) {
  4. var tripal_files = new TripalUploader();
  5. $(".tripal-html5-file-upload-table-key").each(function(index) {
  6. var form_key = $(this).val()
  7. tripal_files.addUploadTable(form_key, {
  8. 'table_id' : '#tripal-html5-file-upload-table-' + form_key,
  9. 'submit_id': '#tripal-html5-file-upload-submit-' + form_key,
  10. 'category' : [form_key],
  11. 'cardinality' : 1,
  12. 'target_id' : 'tripal-html5-upload-fid-' + form_key,
  13. 'module' : 'tripal',
  14. });
  15. });
  16. }
  17. }
  18. }) (jQuery);