mirror of
				https://github.com/dgtlmoon/changedetection.io.git
				synced 2025-11-04 08:34:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			732 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			732 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
$(document).ready(function () {
 | 
						|
    $("#api-key").hover(
 | 
						|
        function () {
 | 
						|
            $("#api-key-copy").html('copy').fadeIn();
 | 
						|
        },
 | 
						|
        function () {
 | 
						|
            $("#api-key-copy").hide();
 | 
						|
        }
 | 
						|
    ).click(function (e) {
 | 
						|
        $("#api-key-copy").html('copied');
 | 
						|
        var range = document.createRange();
 | 
						|
        var n = $("#api-key")[0];
 | 
						|
        range.selectNode(n);
 | 
						|
        window.getSelection().removeAllRanges();
 | 
						|
        window.getSelection().addRange(range);
 | 
						|
        document.execCommand("copy");
 | 
						|
        window.getSelection().removeAllRanges();
 | 
						|
 | 
						|
    });
 | 
						|
 | 
						|
    $("#notification-token-toggle").click(function (e) {
 | 
						|
        e.preventDefault();
 | 
						|
        $('#notification-tokens-info').toggle();
 | 
						|
    });
 | 
						|
});
 | 
						|
 |