bevy_webview_wry 0.5.0

Allows you to create a webview based on wry
Documentation
;(() => {
    Object.defineProperty(window.__FLURX__, "gripZoneHeight", {
        value: 0,
        writable: true,
        configurable: false,
    });
    window.onmousedown = (e) => {
        if (e.clientY <= window.__FLURX__.gripZoneHeight && e.button === 0) {
            window.__FLURX__.emit("FLURX|grip::grab", {
                x: e.clientX,
                y: e.clientY
            });
        }
    };
    window.onmouseup = (e) => {
        if (e.button === 0) {
            window.__FLURX__.emit("FLURX|grip::release", {
                __FLURX__grip_release: 0
            });
        }
    };
})();