backups-control.js 201 B

12345678910111213
  1. $(document).ready(function(){
  2. var area = $('.backups-list .detailed-restore-url');
  3. area.hover(
  4. function() {
  5. $(this).prev().hide();
  6. },
  7. function() {
  8. $(this).prev().show();
  9. });
  10. });