Sha256: c4d1534d4e1fc3f6b956a82d05d4e738cb412726acb4ea5f1b3e894c5b9476d2

Contents?: true

Size: 1.39 KB

Versions: 6

Compression:

Stored size: 1.39 KB

Contents

//= require worthwhile/manage_repeating_fields
//= require worthwhile/help_modal
//= require worthwhile/select_works
//= require worthwhile/link_users
//= require worthwhile/link_groups
//= require worthwhile/proxy_rights
//= require worthwhile/facet_mine
//= require worthwhile/accept_contributor_agreement
//= require worthwhile/proxy_submission
//= require worthwhile/embargoes


// Initialize plugins and Bootstrap dropdowns on jQuery's ready event as well as
// Turbolinks's page change event.
Blacklight.onLoad(function() {
  $('abbr').tooltip();

  $('body').on('keypress', '.multi-text-field', function(event) {
    var $activeField = $(event.target).parents('.field-wrapper'),
        $activeFieldControls = $activeField.children('.field-controls'),
        $addControl=$activeFieldControls.children('.add'),
        $removeControl=$activeFieldControls.children('.remove');
    if (event.keyCode == 13) {
      event.preventDefault();
      $addControl.click()
      $removeControl.click()
    }
  });
  $('.multi_value.form-group').manage_fields();
  $('.link-users').linkUsers();
  $('.link-groups').linkGroups();
  $('.proxy-rights').proxyRights();


//  $('#set-access-controls .datepicker').datepicker({
//    format: 'yyyy-mm-dd',
//    startDate: '+1d'
//  });

  $('.remove-member').on('ajax:success', function(){window.location.href = window.location.href});

  $("[data-toggle='dropdown']").dropdown();

});

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
worthwhile-0.1.2 app/assets/javascripts/worthwhile/worthwhile.js
worthwhile-0.1.1 app/assets/javascripts/worthwhile/worthwhile.js
worthwhile-0.1.0 app/assets/javascripts/worthwhile/worthwhile.js
worthwhile-0.0.3 app/assets/javascripts/worthwhile/worthwhile.js
worthwhile-0.0.2 app/assets/javascripts/worthwhile/worthwhile.js
worthwhile-0.0.1 app/assets/javascripts/worthwhile/worthwhile.js