BootstrapNative.js 168 Bytes
Newer Older
1 2
"use strict";

3
export function createDropdown(iid) {
4 5 6 7 8 9
    var el = document.getElementById(iid);

    if (!window.Dropdown) return;

    new window.Dropdown(el, {});
};