@nedim, thanks for posting a solution. Isn’t there another way to go about it? I don’t have the kind of cpanel access that will allow me change those settings.
Here’s what I’m getting 3 minutes after it clicking backup button
lib/js/ZeroClipboard.swf' } ); /**workaround for firefox versions 18 and 19. https://bugzilla.mozilla.org/show_bug.cgi?id=829557 https://github.com/jonrohan/ZeroClipboard/issues/73 */ var enableZC = true; var is_firefox18 = navigator.userAgent.toLowerCase().indexOf('firefox/18') > -1; var is_firefox19 = navigator.userAgent.toLowerCase().indexOf('firefox/19') > -1; if (is_firefox18 || is_firefox19) enableZC = false; if ( $( ".restore-backup-options" ).length ) { $( ".restore-backup-options" ).each( function() { var clip = new ZeroClipboard( $( "a.copy-button",this ) ); /** FF 18/19 users won't see an alert box. */ if (enableZC) { clip.on( 'complete', function (client, args) { alert( "Copied to clipboard:\n" + args.text ); }); } }); } else { var clip = new ZeroClipboard( $( "a.copy-button" ) ); /** FF 18/19 users won't see an alert box. */ if (enableZC) { clip.on( 'complete', function (client, args) { alert( "Copied to clipboard:\n" + args.text ); }); } } });