Sha256: 939f1377bda6d3adf81ac86532dce7e00514275c663f9ddc757b31ce5ed96a0c
Contents?: true
Size: 625 Bytes
Versions: 20
Compression:
Stored size: 625 Bytes
Contents
"use strict"; const EventImpl = require("./Event-impl").implementation; const PageTransitionEventInit = require("../generated/PageTransitionEventInit"); // https://html.spec.whatwg.org/multipage/browsing-the-web.html#pagetransitionevent class PageTransitionEventImpl extends EventImpl { initPageTransitionEvent(type, bubbles, cancelable, persisted) { if (this._dispatchFlag) { return; } this.initEvent(type, bubbles, cancelable); this.persisted = persisted; } } PageTransitionEventImpl.defaultInit = PageTransitionEventInit.convert(undefined); exports.implementation = PageTransitionEventImpl;
Version data entries
20 entries across 20 versions & 1 rubygems