summaryrefslogtreecommitdiff
path: root/scripts/buttons.js
diff options
context:
space:
mode:
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(){});