-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Becky Bianco
authored and
Becky Bianco
committed
Apr 10, 2011
1 parent
850b17a
commit 26a0cc5
Showing
6 changed files
with
254 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<!DOCTYPE> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | ||
<title>BucketList</title> | ||
|
||
<link rel="stylesheet" href="css/newbucketList.css" type="text/css"> | ||
|
||
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> | ||
|
||
<script src="3rdparty/jquery_1.4.2/jquery_libraries/ui/jquery.ui.core.js"></script> | ||
<script src="3rdparty/jquery_1.4.2/jquery_libraries/ui/jquery.ui.widget.js"></script> | ||
<script src="3rdparty/jquery_1.4.2/jquery_libraries/ui/jquery.ui.mouse.js"></script> | ||
<script src="3rdparty/jquery_1.4.2/jquery_libraries/ui/jquery.ui.draggable.js"></script> | ||
|
||
<script type="text/javascript" src="js/newbucketList.js"></script> | ||
<script type="text/javascript" src="js/Bucket.js"></script> | ||
<script type="text/javascript" src="js/Task.js"></script> | ||
<script type="text/javascript" src="js/Note.js"></script> | ||
|
||
<script type="text/javascript" language="JavaScript"> | ||
var nBuckets = 1; | ||
var firstBucket = new Bucket("My First Bucket", 0); | ||
var organizer=[firstBucket]; | ||
var currentView=null; | ||
</script> | ||
</head> | ||
|
||
|
||
<body> | ||
<div id="container"> | ||
<div id="dropDownBar"> | ||
|
||
<div id="nameDropDown"> | ||
<input type="button" id="nameButton" value = "Alice Packer" class="menu_class" style="background-color:#bbfb66"> | ||
<ul name = "nameMenu" class="the_menu menu1"> | ||
<li>My Account</li> | ||
<li>Settings</li> | ||
</ul> | ||
</input> | ||
</div> | ||
<div id="rightSideDropDowns"> | ||
<div id="alertDropDown"> | ||
<input type="button" id="alertButton" value = "My Alerts" class="menu_class" style="background-color: #e83b94"> | ||
<ul name = "alertMenu" class="the_menu menu2"> | ||
<li>My First Alert</li> | ||
<li>My Second Alert</li> | ||
</ul> | ||
</input> | ||
</div> | ||
|
||
<div id="myTasksDropDown"> | ||
<input type="button" id="tasksButton" value = "My Tasks" class="menu_class" style="background-color: #fcf589"> | ||
<ul id = "tasksMenu" class="the_menu menu3"> | ||
<li><textarea id="bucketInput" class='new bucket' onfocus='bucketFocus(nBuckets)' onblur="bucketBlur(nBuckets)" onkeypress="ifEnter('#bucketInput', event)">New Bucket</textarea></li> | ||
<li onclick="addBucketToPaper('0','My First Bucket')">My First Bucket</li> | ||
</ul> | ||
</input> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div id="welcomeHolder" class="draggable" style="top: 150px; left: 150px;"> | ||
<img src="img/nobucketLogo.gif" style="width: 100%; padding-top: 5%;"></img> | ||
<div style="text-align: center; padding: 15px; font-size: 10pt;"> To get started, click in "My Tasks" to create a new Bucket!</div> | ||
</div> | ||
|
||
<div id="paperHolder" class="hidden draggable"> | ||
<div id="textHolder" class="hidden"> | ||
<div id="leftBox" style="width: 65%; float: left;"> | ||
<div id="topLeftBox" style="height: 9%; border-bottom: 1px solid black;"> | ||
<div width=20 style="float: left;"> | ||
<img id="bucketIcon" class='hidden icon'></img> | ||
</div> | ||
<div> | ||
<h5 id="paperTitle" style="position: relative;"></h5> | ||
</div> | ||
</div> | ||
<div id="bottomLeftBox" style="height: 70%; border-right: 1px solid black;"> | ||
</div> | ||
</div> | ||
<div id="rightBox" style="width: 35%; float: right;"> | ||
<div id="topRightBox" style="height: 9%; border-bottom: 1px solid black;"> | ||
<div> | ||
<h5 id="collabsTitle" style="float: left;"><b>Collaborators</b></h5> | ||
</div> | ||
<div> | ||
<input type="button" class="menu_class" id="addCollabButton" value="+" style="width: 20%; float: right; padding-top: 0px; padding-bottom: 0px;"> | ||
<ul id = "collabsMenu" class="the_menu menu4" style="float: left;"> | ||
<li><textarea id="collabInput" class='new collab' onfocus='collabFocus()' onblur="collabBlur()" onkeypress="ifEnter('#collabInput', event)">Enter name</textarea></li> | ||
</ul> | ||
</input> | ||
</div> | ||
</div> | ||
<div id="bottomRightBox" style="height: 70%"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> <!-- END container --> | ||
</body> | ||
|
||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<!DOCTYPE> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | ||
<title>BucketList</title> | ||
|
||
<link rel="stylesheet" href="css/newbucketList.css" type="text/css"> | ||
|
||
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> | ||
|
||
<script src="3rdparty/jquery_1.4.2/jquery_libraries/ui/jquery.ui.core.js"></script> | ||
<script src="3rdparty/jquery_1.4.2/jquery_libraries/ui/jquery.ui.widget.js"></script> | ||
<script src="3rdparty/jquery_1.4.2/jquery_libraries/ui/jquery.ui.mouse.js"></script> | ||
<script src="3rdparty/jquery_1.4.2/jquery_libraries/ui/jquery.ui.draggable.js"></script> | ||
|
||
<script type="text/javascript" src="js/newbucketList.js"></script> | ||
<script type="text/javascript" src="js/Bucket.js"></script> | ||
<script type="text/javascript" src="js/Task.js"></script> | ||
<script type="text/javascript" src="js/Note.js"></script> | ||
|
||
<script type="text/javascript" language="JavaScript"> | ||
var nBuckets = 1; | ||
var firstBucket = new Bucket("My First Bucket", 0); | ||
var organizer=[firstBucket]; | ||
var currentView=null; | ||
</script> | ||
</head> | ||
|
||
|
||
<body> | ||
<div id="container"> | ||
<div id="dropDownBar"> | ||
|
||
<div id="nameDropDown"> | ||
<input type="button" id="nameButton" value = "Alice Packer" class="menu_class" style="background-color:#bbfb66"> | ||
<ul name = "nameMenu" class="the_menu menu1"> | ||
<li>My Account</li> | ||
<li>Settings</li> | ||
</ul> | ||
</input> | ||
</div> | ||
<div id="rightSideDropDowns"> | ||
<div id="alertDropDown"> | ||
<input type="button" id="alertButton" value = "My Alerts" class="menu_class" style="background-color: #e83b94"> | ||
<ul name = "alertMenu" class="the_menu menu2"> | ||
<li>My First Alert</li> | ||
<li>My Second Alert</li> | ||
</ul> | ||
</input> | ||
</div> | ||
|
||
<div id="myTasksDropDown"> | ||
<input type="button" id="tasksButton" value = "My Tasks" class="menu_class" style="background-color: #fcf589"> | ||
<ul id = "tasksMenu" class="the_menu menu3"> | ||
<li><textarea id="bucketInput" class='new bucket' onfocus='bucketFocus(nBuckets)' onblur="bucketBlur(nBuckets)" onkeypress="ifEnter('#bucketInput', event)">New Bucket</textarea></li> | ||
<li onclick="addBucketToPaper('0','My First Bucket')">My First Bucket</li> | ||
</ul> | ||
</input> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div id="welcomeHolder" class="draggable" style="top: 150px; left: 150px;"> | ||
<img src="img/nobucketLogo.gif" style="width: 100%; padding-top: 5%;"></img> | ||
<div style="text-align: center; padding: 15px; font-size: 10pt;"> To get started, click in "My Tasks" to create a new Bucket!</div> | ||
</div> | ||
|
||
<div id="paperHolder" class="hidden draggable"> | ||
<div id="textHolder" class="hidden"> | ||
<div id="leftBox" style="width: 65%; float: left;"> | ||
<div id="topLeftBox" style="height: 9%; border-bottom: 1px solid black;"> | ||
<div width=20 style="float: left;"> | ||
<img id="bucketIcon" class='hidden icon'></img> | ||
</div> | ||
<div> | ||
<h5 id="paperTitle" style="position: relative;"></h5> | ||
</div> | ||
</div> | ||
<div id="bottomLeftBox" style="height: 70%; border-right: 1px solid black;"> | ||
</div> | ||
</div> | ||
<div id="rightBox" style="width: 35%; float: right;"> | ||
<div id="topRightBox" style="height: 9%; border-bottom: 1px solid black;"> | ||
<div> | ||
<h5 id="collabsTitle" style="float: left;"><b>Collaborators</b></h5> | ||
</div> | ||
<div> | ||
<input type="button" class="menu_class" id="addCollabButton" value="+" style="width: 20%; float: right; padding-top: 0px; padding-bottom: 0px;"> | ||
<ul id = "collabsMenu" class="the_menu menu4" style="float: left;"> | ||
<li><textarea id="collabInput" class='new collab' onfocus='collabFocus()' onblur="collabBlur()" onkeypress="ifEnter('#collabInput', event)">Enter name</textarea></li> | ||
</ul> | ||
</input> | ||
</div> | ||
</div> | ||
<div id="bottomRightBox" style="height: 70%"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> <!-- END container --> | ||
</body> | ||
|
||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters