mirror of
				https://github.com/TriliumNext/Notes.git
				synced 2025-11-04 07:01:31 +08:00 
			
		
		
		
	Merge pull request #559 from TriliumNext/siriusxt-test
Make attachments open in a new tab/browser
This commit is contained in:
		
						commit
						b5988ba7c2
					
				@ -32,7 +32,7 @@ export default class AbstractTextTypeWidget extends TypeWidget {
 | 
			
		||||
 | 
			
		||||
    async openImageInCurrentTab($img) {
 | 
			
		||||
        const { noteId, viewScope } = await this.parseFromImage($img);
 | 
			
		||||
 | 
			
		||||
        
 | 
			
		||||
        if (noteId) {
 | 
			
		||||
            appContext.tabManager.getActiveContext().setNote(noteId, { viewScope });
 | 
			
		||||
        } else {
 | 
			
		||||
@ -40,8 +40,8 @@ export default class AbstractTextTypeWidget extends TypeWidget {
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    openImageInNewTab($img) {
 | 
			
		||||
        const { noteId, viewScope } = this.parseFromImage($img);
 | 
			
		||||
    async openImageInNewTab($img) {
 | 
			
		||||
        const { noteId, viewScope } = await this.parseFromImage($img);
 | 
			
		||||
 | 
			
		||||
        if (noteId) {
 | 
			
		||||
            appContext.tabManager.openTabWithNoteWithHoisting(noteId, { viewScope });
 | 
			
		||||
 | 
			
		||||
@ -111,13 +111,9 @@ async function createMainWindow(app: App) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function configureWebContents(webContents: WebContents, spellcheckEnabled: boolean) {
 | 
			
		||||
    if (!mainWindow) {
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    remoteMain.enable(webContents);
 | 
			
		||||
 | 
			
		||||
    mainWindow.webContents.setWindowOpenHandler((details) => {
 | 
			
		||||
    webContents.setWindowOpenHandler((details) => {
 | 
			
		||||
        async function openExternal() {
 | 
			
		||||
            (await import('electron')).shell.openExternal(details.url);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user