Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
evergreen / app / assets / javascripts / evergreen / custom_path.js
Size: Mime:
$(function() {
  $togglePathEditable = function() {
    $('input.custom-path').prop('disabled', !$('input.using-custom-path').prop('checked'));
  };

  $togglePathEditable();
  $(document).change('input.using-custom-path', $togglePathEditable);
});