var $ = require('jquery'); var _ = require('lodash'); var events = require('./events'); // List of created buttons var buttons = []; // Insert a jquery element at a specific position function insertAt(parent, selector, index, element) { var lastIndex = parent.children(selector).size(); if (index < 0) { index = Math.max(0, lastIndex + 1 + index); } parent.append(element); if (index < lastIndex) { parent.children(selector).eq(index).before(parent.children(selector).last()); } } // Default click handler function defaultOnClick(e) { e.preventDefault(); } // Create a dropdown menu function createDropdownMenu(dropdown) { var $menu = $('