mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
18 lines
450 B
JavaScript
18 lines
450 B
JavaScript
/*
|
|
* This is the iife compilation entry point - only used for the build.
|
|
*/
|
|
import 'babel-polyfill/dist/polyfill'
|
|
|
|
// if we wanted to import/export global $, we would do it like this:
|
|
// import $ from 'jquery'
|
|
// export {$}
|
|
|
|
import './index'
|
|
|
|
// if we used a page global `var onReady = []`, we could then in-page do onReady.push(function(){ /* my init fn */}) and exec them here
|
|
// $(() => {
|
|
// for (let fn of onReady) {
|
|
// fn()
|
|
// }
|
|
// })
|