Sha256: 6965bb29aa2bedf9baf2acd172c60f8cf35142d93e4baa96c31581fabd5eb94d
Contents?: true
Size: 636 Bytes
Versions: 26
Compression:
Stored size: 636 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, undefined); exports.implementation = PageTransitionEventImpl;
Version data entries
26 entries across 26 versions & 1 rubygems