Skip to content

Instantly share code, notes, and snippets.

@gladimdim
Last active October 24, 2017 12:15
Show Gist options
  • Save gladimdim/e8956cdf63df5fcd84ee9d63d99ae736 to your computer and use it in GitHub Desktop.
Save gladimdim/e8956cdf63df5fcd84ee9d63d99ae736 to your computer and use it in GitHub Desktop.
const createControl = (aggrNames) => {
const rootElement = document.createElement("select");
rootElement.setAttribute("name", "aggregations");
for (let name of aggrNames) {
const optionElement = document.createElement("option");
optionElement.textContent = name;
rootElement.appendChild(
optionElement
);
}
return rootElement;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment