ProvidenceXz/Trinity-Health

View on GitHub
app/assets/javascripts/show_notes.js

Summary

Maintainability
A
0 mins
Test Coverage
$(document).ready(function() {
    $("div#add_note_form").hide();
    $("a#show_form").click(function(event) {
        event.preventDefault();
        $("div#add_note_form").toggle();
    });
});