aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/js.sh
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-06-09 20:00:55 -0500
committerJesús <heckyel@hyperbola.info>2019-06-09 20:00:55 -0500
commit9acbe4315521766a40083e26db86e5aa20732941 (patch)
tree56c2ebf408973e9381f5d4c48ca92f86282e1303 /scripts/js.sh
parenteee68bb5b3807225aeb2f4ae4030f5f35b4bfee0 (diff)
downloadlibretube-theme-9acbe4315521766a40083e26db86e5aa20732941.tar.lz
libretube-theme-9acbe4315521766a40083e26db86e5aa20732941.tar.xz
libretube-theme-9acbe4315521766a40083e26db86e5aa20732941.zip
remove JS
Diffstat (limited to 'scripts/js.sh')
-rw-r--r--scripts/js.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/scripts/js.sh b/scripts/js.sh
deleted file mode 100644
index 7a95c19..0000000
--- a/scripts/js.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-#
-
-run_navbar()
-{
- local _name="${1-menu}"
- local _dir="${2-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
- local _target="${_dir%/*}" # deleted slash
- local _src="${_target%scripts}/src/js/${_name}.js" # input
- local _dest="${_target%scripts}/dist/js/" # output
-
- if [[ -n "${_src}" ]];
- then
- mkdir -p "${_dest}"
- cp -fv "${_src}" "${_dest}"
- fi
-
-}
-
-# ==============================================================================
-# EXECUTION - START
-# ==============================================================================
-run_navbar "$@"