0.2.0 • Published 7 years ago

ivi-dom v0.2.0

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

DOM Helpers

Browser Quirks

InnerHTML

function setInnerHTML(element: Element, content: string, isSVG: boolean): void;

setInnerHTML() sets innerHTML property for HTML and SVG elements (IE doesn't have native innerHTML on SVG elements).

KeyboardEvent

function getEventCharCode(ev: KeyboardEvent): number;

getEventCharCode() retrieves a normalized charCode from a KeyboardEvent.

function getEventKey(ev: KeyboardEvent): string;

getEventKey() retrieves a key from a KeybordEvent with a fallback for browsers that doesn't support key property.

function getMouseButtons(ev: MouseEvent): number;

getMouseButtons() retrieves a buttons property from a MouseEvent with a fallback implementation for Safari.

0.2.0

7 years ago

0.1.0

7 years ago