mirror of
https://github.com/myvesta/vesta
synced 2025-07-31 03:51:14 -07:00
13 lines
No EOL
201 B
JavaScript
13 lines
No EOL
201 B
JavaScript
$(document).ready(function(){
|
|
|
|
var area = $('.backups-list .detailed-restore-url');
|
|
|
|
|
|
area.hover(
|
|
function() {
|
|
$(this).prev().hide();
|
|
},
|
|
function() {
|
|
$(this).prev().show();
|
|
});
|
|
}); |