UNPKG

roseworx

Version:

Front end css and js framework

15 lines (13 loc) 339 B
import { rwxCore } from '../rwxCore'; import rwxAnimatedBorder from '../common/rwxAnimatedBorder'; class rwxAnimatedBorders extends rwxCore { constructor() { super({selector:'[rwx-animated-border]', resource: 'rwxAnimatedBorders'}); } execute(el) { return new rwxAnimatedBorder(el); } } export default new rwxAnimatedBorders();