+
+
+
+
\ No newline at end of file
diff --git a/css/.tmp_bucketList.css.html30468~ b/css/.tmp_bucketList.css.html30468~
new file mode 100644
index 0000000..47ef13d
--- /dev/null
+++ b/css/.tmp_bucketList.css.html30468~
@@ -0,0 +1,193 @@
+
The H1 tag looks like this
+
The paragraph tag after an H1 tag looks like this
+
The H2 tag looks like this
+
The paragraph tag after an H2 tag looks like this
+
The H3 tag looks like this
+
The paragraph tag after an H3 tag looks like this
+
The H4 tag looks like this
+
The paragraph tag after an H4 tag looks like this
+
The H5 tag looks like this
+
The paragraph tag after an H5 tag looks like this
+
+
This is a strong element in an ordered list
+
This is an italic element in an ordered list
+
This is a bold element in an ordered list
+
This is an emphasized element in an ordered list
+
This is a regular element in an ordered list
+
+
+
This is a strong element in an unordered list
+
This is an italic element in an unordered list
+
This is a bold element in an unordered list
+
This is an emphasized element in an unordered list
Text inside a div that is 200 pixels wide looks like this. Text inside a div that is 200 pixels wide looks like this. Text inside a div that is 200 pixels wide looks like this. Text inside a div that is 200 pixels wide looks like this. Text inside a div that is 200 pixels wide looks like this. Text inside a div that is 200 pixels wide looks like this. Text inside a div that is 200 pixels wide looks like this. Text inside a div that is 200 pixels wide looks like this. Text inside a div that is 200 pixels wide looks like this. Text inside a div that is 200 pixels wide looks like this.
+
Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this. Text inside a div that is 400 pixels wide looks like this.
+
Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this. Text inside a div that is 600 pixels wide looks like this.
diff --git a/js/bucketList.js b/js/bucketList.js
index ff1c240..b0d42f0 100644
--- a/js/bucketList.js
+++ b/js/bucketList.js
@@ -7,9 +7,17 @@ $(document).ready(function(){
// This function sets the taskInfo pannel to contain the appropriate information
// It is called when a bucket or task in the left list is clicked
function setInfo(bucket, task) {
- $('#'+currentView).addClass('hiddenFloat');
- currentView = 'b'+bucket+'t'+task+'n';
- $('#'+currentView).removeClass('hiddenFloat');
+ if (currentView == "welcome") {
+ $('#'+currentView).addClass('hiddenFloat');
+ } else{
+ $('#' + currentView + 'n').addClass('hiddenFloat');
+ $('#' + currentView + 'c').addClass('hiddenFloat');
+ $('#' + currentView + 'd').addClass('hiddenFloat');
+ }
+ currentView = 'b'+bucket+'t'+task;
+ $('#'+currentView+'n').removeClass('hiddenFloat');
+ $('#'+currentView+'c').removeClass('hiddenFloat');
+ $('#'+currentView+'d').removeClass('hiddenFloat');
}
@@ -182,7 +190,7 @@ function addBucket() {
}
function addTaskToInfo(bucket, task, name) {
- var html = "
"
+ var notes = "
"
+ "
Information about " + name + "
"
+ "New Note
";
- var html2 = "
Collaborators
";
+ var collabs = "
"
+ + "
Collaborators
"
+ + "
Becky
";
+ var due = "
"
+ + "
Due Date Options
"
+ + "
Due Date: "
+ + "Enter the due date here."
+ + "
Remind me days in advance.
";
- $("#taskInfo").append(html);
- $("#collabsBar").append(html2);
-
+ $("#notesBox").append(notes);
+ $("#collabsBar").append(collabs);
+ $("#dueOptions").append(due);
+
}
function addBucketToInfo(bucket, name) {
- var html = "
"
+ var notes = "
"
+ "
Information about " + name + "
"
+ "New Note
";
- var html2 = "
Collaborators
";
+ var collabs = "
"
+ + "
Collaborators
"
+ + "
Becky
";
- $("#taskInfo").append(html);
- $("#collabsBar").append(html2);
-
-}
+ var due = "";
+ $("#notesBox").append(notes);
+ $("#collabsBar").append(collabs);
+ $("#dueOptions").append(due);
-function getInfoHTML(bucket, task, name) {
- var html = "