mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
11 lines
288 B
JavaScript
11 lines
288 B
JavaScript
|
|
$(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();
|
||
|
|
});
|
||
|
|
});
|