UNPKG

yeditor

Version:

Front-end editor for web page

23 lines (16 loc) 428 B
"use strict"; /** * entry point */ // add babel polyfill import "babel-polyfill"; // add main style file require('./css/style.scss'); // add font-awesome style (its helpful with the button) require('font-awesome/css/font-awesome.css'); // import the main class import {Editor as Yeditor} from './js/Editor.class.js'; // expose the class to window scope if(window){ window.Yeditor = Yeditor; }