summaryrefslogtreecommitdiff
path: root/scripts/buttons.js
diff options
context:
space:
mode:
authorOwen <despito@MacBook-Pro-de-Despito.local>2014-08-05 17:14:01 +0300
committerOwen <despito@MacBook-Pro-de-Despito.local>2014-08-05 17:14:01 +0300
commitd81197849358f2482dbb46113f87beedee02f072 (patch)
treec0807331a2bd4aade55f2f877a08d98aedc1920f /scripts/buttons.js
parentce133cae340bf077a3cc1222257638392681a118 (diff)
Multiple Issues fixed
Resizeable task bar Deliverable state combo box Edit node submit bug fix Code cleaup
Diffstat (limited to 'scripts/buttons.js')
-rw-r--r--scripts/buttons.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/scripts/buttons.js b/scripts/buttons.js
index b29e85e9..c1e63bd8 100644
--- a/scripts/buttons.js
+++ b/scripts/buttons.js
@@ -1,22 +1,3 @@
-$('.colorpicker').click(function(){Colorize();});
-
-var chosencolor;
-
-function Colorize(){
- $('.colorpicker').html("<table><tr><td class='td1'>person</td></tr><tr><td class='td2'>project</td></tr><tr><td class='td3'>question</td></tr><tr><td class='td4'>idea</td></tr></table>");
- $('.td1').css('background-color',customColor("person"));
- $('.td2').css('background-color',customColor("project"));
- $('.td3').css('background-color',customColor("skill"));
- $('.td4').css('background-color',customColor("deliverable"));
- $('.td5').css('background-color',customColor("objective"));
-
- $('.td1').click(function(){chosencolor="person"});
- $('.td2').click(function(){chosencolor="project"});
- $('.td3').click(function(){chosencolor="skill"});
- $('.td4').click(function(){chosencolor="deliverable"});
- $('.td5').click(function(){chosencolor="objective"});
-}
-
$('.tutorial').click(function(){});