openSUSE/osem

View on GitHub
app/assets/javascripts/osem-revisionhistory.js

Summary

Maintainability
A
0 mins
Test Coverage
$(document).ready(function() {
    $('.show-changeset').click(function(){
        if ($(this).text() == 'View Changes'){
            $(this).text('Hide Changes');
        }else {
            $(this).text('View Changes');
        }
        $('#changeset-' + this.id).toggle();
    });
});