diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2012-09-30 21:48:34 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2012-09-30 21:48:34 -0700 |
commit | be06cd9fdc0253b5fdf2fb17de4aac6f10bff80c (patch) | |
tree | 88577786c50a004d19f0c19c06d9d57acfe4c906 | |
parent | 2ce5e3800ff764870c93038d0c5ed35181225a52 (diff) | |
download | pathery-be06cd9fdc0253b5fdf2fb17de4aac6f10bff80c.tar.xz |
Irrelevent fiddling.
-rw-r--r-- | js/mapspecs.js | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/js/mapspecs.js b/js/mapspecs.js index ded7bfc..8bd3f6f 100644 --- a/js/mapspecs.js +++ b/js/mapspecs.js @@ -130,7 +130,7 @@ function grid_click(obj) { obj.cv = true;
childdiv.removeAttribute("class");
- childdiv.setAttribute("class", "grid_td_walls");
+ childdiv.setAttribute("class", "grid_td_walls");
if (typeof playerWallColor === 'undefined' || playerWallColor == '')
obj.style.backgroundColor = '#666666';
else
@@ -727,9 +727,6 @@ function dullColor(colorAsHex, value) { r = parseInt(r);
g = parseInt(g);
b = parseInt(b);
- // r = r + value;
- // g = g + value;
- // b = b + value;
return rgbToHex(r, g, b);
}
@@ -794,18 +791,3 @@ for (i=0;i<ARRcookies.length;i++) }
return "";
}
-
-
-//== Outdated functions
-var de = false;
-function displaymap(obj) {
- if (de == false) {
- obj.setAttribute('class', 'mapdisplay_up');
- }
-}
-function minmap(obj) {
- de = true;
- obj.setAttribute('class', 'mapdisplay');
- setTimeout("de = false;", 1000);
-}
-//== End
|