Move function html_to_element to common.js.

master
voussoir 2020-06-03 12:26:25 -07:00
parent 2ba9eb8df2
commit 113a92fb5b
2 changed files with 9 additions and 8 deletions

View File

@ -106,6 +106,14 @@ function entry_with_history_hook(box, button)
}
}
common.html_to_element =
function html_to_element(html)
{
var template = document.createElement("template");
template.innerHTML = html;
return template.content.firstChild;
}
common.init_atag_merge_params =
function init_atag_merge_params()
{

View File

@ -310,7 +310,7 @@ function toggle_embed_video(video_id)
if (embeds.length == 0)
{
var html = `<div class="video_iframe_holder"><iframe width="711" height="400" src="https://www.youtube.com/embed/${video_id}" frameborder="0" allow="encrypted-media" allowfullscreen></iframe></div>`
var embed = html_to_element(html);
var embed = common.html_to_element(html);
embed_toolbox.appendChild(embed);
show_button.classList.add("hidden");
hide_button.classList.remove("hidden");
@ -333,13 +333,6 @@ function deselect_all()
video_card_selections = [];
}
function html_to_element(html)
{
var template = document.createElement("template");
template.innerHTML = html;
return template.content.firstChild;
}
function onclick_select(event)
{
if (!event.target.classList.contains("video_card"))