mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	chore(print): clean up some logs
This commit is contained in:
		
							parent
							
								
									64576458b7
								
							
						
					
					
						commit
						76c337602b
					
				@ -302,13 +302,11 @@ export default class NoteDetailWidget extends NoteContextAwareWidget {
 | 
			
		||||
        iframe.className = "print-iframe";
 | 
			
		||||
        document.body.appendChild(iframe);
 | 
			
		||||
        iframe.onload = () => {
 | 
			
		||||
            console.log("Got ", iframe, iframe.contentWindow);
 | 
			
		||||
            if (iframe.contentWindow) {
 | 
			
		||||
                iframe.contentWindow.addEventListener("note-ready", () => {
 | 
			
		||||
                    iframe.contentWindow?.print();
 | 
			
		||||
                    document.body.removeChild(iframe);
 | 
			
		||||
                });
 | 
			
		||||
            }
 | 
			
		||||
            if (!iframe.contentWindow) return;
 | 
			
		||||
            iframe.contentWindow.addEventListener("note-ready", () => {
 | 
			
		||||
                iframe.contentWindow?.print();
 | 
			
		||||
                document.body.removeChild(iframe);
 | 
			
		||||
            });
 | 
			
		||||
        };
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -20,7 +20,6 @@ type View = "desktop" | "mobile" | "print";
 | 
			
		||||
 | 
			
		||||
function index(req: Request, res: Response) {
 | 
			
		||||
    const view = getView(req);
 | 
			
		||||
    console.log("Got view ", view);
 | 
			
		||||
    const options = optionService.getOptionMap();
 | 
			
		||||
 | 
			
		||||
    //'overwrite' set to false (default) => the existing token will be re-used and validated
 | 
			
		||||
@ -68,7 +67,6 @@ function index(req: Request, res: Response) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function getView(req: Request): View {
 | 
			
		||||
    console.log("Got ", req.query);
 | 
			
		||||
    // Special override for printing.
 | 
			
		||||
    if ("print" in req.query) {
 | 
			
		||||
        return "print";
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user