Katello/katello

View on GitHub
app/assets/javascripts/katello/organizations/download_certificate.js

Summary

Maintainability
A
0 mins
Test Coverage
$(document).ready(function() {
    $('body').on('click', '#download_debug_cert_key', function(e) {
        e.preventDefault();
        window.location.href = $("#download_debug_cert_key").data("url");
        return false;
    });
});