mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-09-08 12:39:53 +02:00
13 lines
201 B
JavaScript
13 lines
201 B
JavaScript
$(document).ready(function(){
|
|
|
|
var area = $('.backups-list .detailed-restore-url');
|
|
|
|
|
|
area.hover(
|
|
function() {
|
|
$(this).prev().hide();
|
|
},
|
|
function() {
|
|
$(this).prev().show();
|
|
});
|
|
}); |