Revert "Add Youtube videos to the map (#13592)"

This reverts commit 4a3fcba501.
This commit is contained in:
Quincy Larson
2017-05-03 19:22:05 -05:00
committed by GitHub
parent 4a3fcba501
commit 60187e6c28
23 changed files with 14 additions and 711 deletions

View File

@@ -506,7 +506,7 @@ export function applyFilterToMap(tree, filterRegex) {
// if leaf (challenge) then test if regex is a match
if (!Array.isArray(node.children)) {
// does challenge name meet filter criteria?
if (filterRegex.test(node.title) || filterRegex.test(node.name)) {
if (filterRegex.test(node.title)) {
// is challenge currently hidden?
if (node.isHidden) {
// unhide challenge, it matches