All Downloads are FREE. Search and download functionalities are using the official Maven repository.

desktopMain.com.multiplatform.webview.web.DisablePopupWindowsLifeSpanHandler.kt Maven / Gradle / Ivy

There is a newer version: 1.9.40
Show newest version
package com.multiplatform.webview.web

import org.cef.browser.CefBrowser
import org.cef.browser.CefFrame
import org.cef.handler.CefLifeSpanHandlerAdapter

class DisablePopupWindowsLifeSpanHandler : CefLifeSpanHandlerAdapter() {
    override fun onBeforePopup(
        browser: CefBrowser?,
        frame: CefFrame?,
        target_url: String?,
        target_frame_name: String?,
    ): Boolean {
        if (target_url != null) {
            browser?.loadURL(target_url)
        }
        return true
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy