Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 492 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 492 Bytes

Odo Helpers

A collection of helper methods for Odo projects.

Install

npm install @odopod/odo-helpers --save

Quick Start

import { onTransitionEnd } from '@odopod/odo-helpers';

onTransitionEnd(myElement, () => {
  console.log('`transitionend` event emitted from "myElement"');
});

Visit the Odo component directory for demos, code examples, and documentation.