Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
587 changes: 587 additions & 0 deletions bootstrap-3.3.7-dist/css/bootstrap-theme.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bootstrap-3.3.7-dist/css/bootstrap-theme.css.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions bootstrap-3.3.7-dist/css/bootstrap-theme.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bootstrap-3.3.7-dist/css/bootstrap-theme.min.css.map

Large diffs are not rendered by default.

6,757 changes: 6,757 additions & 0 deletions bootstrap-3.3.7-dist/css/bootstrap.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bootstrap-3.3.7-dist/css/bootstrap.css.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions bootstrap-3.3.7-dist/css/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bootstrap-3.3.7-dist/css/bootstrap.min.css.map

Large diffs are not rendered by default.

Binary file not shown.
288 changes: 288 additions & 0 deletions bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2,377 changes: 2,377 additions & 0 deletions bootstrap-3.3.7-dist/js/bootstrap.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions bootstrap-3.3.7-dist/js/bootstrap.min.js

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions bootstrap-3.3.7-dist/js/npm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
require('../../js/transition.js')
require('../../js/alert.js')
require('../../js/button.js')
require('../../js/carousel.js')
require('../../js/collapse.js')
require('../../js/dropdown.js')
require('../../js/modal.js')
require('../../js/tooltip.js')
require('../../js/popover.js')
require('../../js/scrollspy.js')
require('../../js/tab.js')
require('../../js/affix.js')
9 changes: 5 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@

<ul>
<li class = "dropdown"><a href = index.html class = "drop_button active">Home</a></li>
<li class = "dropdown">
<li class = "dropdown" id = "aboutButton">
<a href = about.html class = "drop_button">About</a>
<div class = "drop_content">
<a href = mission.html>Our Mission and Vision</a>
<a href = team.html>Meet Our Team</a>
<!--<a href = team.html>Meet Our Team</a>-->
</div>

<!--<ul>-->
Expand Down Expand Up @@ -181,8 +181,9 @@

<!--<script src = "navBar.js"></script>-->

<!--<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="showOnScroll.js"></script>-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src = "newNavBar.js"></script>
<!--<script src="showOnScroll.js"></script>-->
</body>
</html>

21 changes: 21 additions & 0 deletions newNavBar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
$("#aboutButton").onmouseover = function() {
/*
var aboutDropContent = document.creatElement("div");
aboutDropContent.addClass("drop-content");
var missionAndVision = document.creatElement("a");
missionAndVision.href = "mission.html";
missionAndVision.innerHTML = "Our Mission And Vision";
aboutDropContent.appendChild(missionAndVision);
var meetOurTeam = document.creatElement("a");
meetOurTeam.href = "team.html";
meetOurTeam.innerHTML = "Meet Our Team";
aboutDropContent.appendChild(meetOurTeam);
jQuery("#dropdown.aboutButton").appendChild(aboutDropContent);
*/
var meetOurTeam = document.createElement("a");
var meetOurTeamText = document.createTextNode("Meet Our Team");
meetOurTeam.appendChild(meetOurTeamText);
//meetOurTeam.innerHTML = "Meet Our Team";
meetOurTeam.href = "team.html";
$("#aboutButton").children[1].appendChild(meetOurTeam);
}