aboutsummaryrefslogtreecommitdiffstats
path: root/script.js
diff options
context:
space:
mode:
authorMasfehico <clyhtsuriva@gmail.com>2020-11-23 17:37:22 +0100
committerMasfehico <clyhtsuriva@gmail.com>2020-11-23 17:37:22 +0100
commit13d0859dcd9793212a71d7678328b879e11e2691 (patch)
tree2e8561d158872c4b5912026acebcdf9169f7aa31 /script.js
parent2e8178f29c2ead5b9ce296c5bf4ce4cb7aef4209 (diff)
downloadjMusicHub-13d0859dcd9793212a71d7678328b879e11e2691.tar.gz
jMusicHub-13d0859dcd9793212a71d7678328b879e11e2691.tar.bz2
jMusicHub-13d0859dcd9793212a71d7678328b879e11e2691.zip
Cleaning up
Diffstat (limited to '')
-rw-r--r--script.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/script.js b/script.js
deleted file mode 100644
index b346356..0000000
--- a/script.js
+++ /dev/null
@@ -1,30 +0,0 @@
-function show(type)
-{
- count = 0;
- for (var key in methods) {
- var row = document.getElementById(key);
- if ((methods[key] & type) != 0) {
- row.style.display = '';
- row.className = (count++ % 2) ? rowColor : altColor;
- }
- else
- row.style.display = 'none';
- }
- updateTabs(type);
-}
-
-function updateTabs(type)
-{
- for (var value in tabs) {
- var sNode = document.getElementById(tabs[value][0]);
- var spanNode = sNode.firstChild;
- if (value == type) {
- sNode.className = activeTableTab;
- spanNode.innerHTML = tabs[value][1];
- }
- else {
- sNode.className = tableTab;
- spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>";
- }
- }
-}
hlight'> 2021-05-19Update README.mdClyhtsuriva1-8/+10 2021-05-19Update README.mdClyhtsuriva1-1/+2 2021-05-19Update README.mdClyhtsuriva1-8/+7 2021-05-19Update README.mdrelease/3.2.1Clyhtsuriva1-6/+21 2021-05-19Big updaterelease/3.2Clyhtsuriva55-235/+193 Restructuring the packages and adding a Constants.kt for the api URL. Also adding gson in Singletons.kt 2021-05-19Update README.mdClyhtsuriva1-1/+5 2021-05-14Update README.mdClyhtsuriva1-1/+3 2021-05-14Update README.mdClyhtsuriva1-0/+23 2021-05-14Update README.md and adding logo onto the main screenrelease/3.1Clyhtsuriva2-10/+13 2021-05-14Singletons on all pages : OKClyhtsuriva6-125/+81 2021-05-14Singletons : DetailTopManga : OKClyhtsuriva2-21/+49 2021-05-14Addedd Singletons for TopManga.Clyhtsuriva3-23/+43