Commit 5d24d6cc by Kyle Fiedler

Added more js to the footer and added some small other style fixes

parent 3f7c4ada
<%inherit file="main.html" /> <%inherit file="main.html" />
<%block name="js_extra">
<!-- TODO: http://docs.jquery.com/Plugins/Validation --> <!-- TODO: http://docs.jquery.com/Plugins/Validation -->
<script type="text/javascript"> <script type="text/javascript">
$(function() { $(function() {
${init} ${init}
}); });
</script> </script>
</%block>
<%include file="navigation.html" args="active_page='courseware'" /> <%include file="navigation.html" args="active_page='courseware'" />
......
...@@ -9,11 +9,6 @@ ...@@ -9,11 +9,6 @@
<script type="text/javascript" src="${ settings.LIB_URL }jquery-1.6.2.min.js"></script> <script type="text/javascript" src="${ settings.LIB_URL }jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="${ settings.LIB_URL }jquery-ui-1.8.16.custom.min.js"></script> <script type="text/javascript" src="${ settings.LIB_URL }jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="${ settings.LIB_URL }swfobject/swfobject.js"></script> <script type="text/javascript" src="${ settings.LIB_URL }swfobject/swfobject.js"></script>
<script type="text/javascript" src="${ settings.LIB_URL }jquery.treeview.js"></script>
<script type="text/javascript" src="/static/js/jquery.leanModal.min.js"></script>
<script type="text/javascript" src="/static/js/video_player.js"></script>
<script type="text/javascript" src="/static/js/schematic.js"></script>
<script type="text/javascript" src="/static/js/cktsim.js"></script>
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="/static/js/html5shiv.js"></script> <script src="/static/js/html5shiv.js"></script>
...@@ -84,6 +79,12 @@ ...@@ -84,6 +79,12 @@
</dl> </dl>
</div> </div>
<script type="text/javascript" src="${ settings.LIB_URL }jquery.treeview.js"></script>
<script type="text/javascript" src="/static/js/jquery.leanModal.min.js"></script>
<script type="text/javascript" src="/static/js/video_player.js"></script>
<script type="text/javascript" src="/static/js/schematic.js"></script>
<script type="text/javascript" src="/static/js/cktsim.js"></script>
<script> <script>
// Feedback form // Feedback form
$(function() { $(function() {
...@@ -109,13 +110,11 @@ $(function() { ...@@ -109,13 +110,11 @@ $(function() {
}); });
}); });
}); });
</script>
<script type="text/javascript"> $(function(){
$(function(){ $("a[rel*=leanModal]").leanModal();
$("a[rel*=leanModal]").leanModal();
}); });
</script> </script>
<%block name="js_extra"/> <%block name="js_extra"/>
......
...@@ -23,9 +23,7 @@ ...@@ -23,9 +23,7 @@
<!--script type="text/javascript" src="/static/js/video_player.js"></script--> <!--script type="text/javascript" src="/static/js/video_player.js"></script-->
<!-- <script type="text/javascript" src="/static/js/schematic.js"></script> --> <!-- <script type="text/javascript" src="/static/js/schematic.js"></script> -->
<!--[if lt IE 9]>
<script src="/static/js/html5shiv.js"></script> <script src="/static/js/html5shiv.js"></script>
<![endif]-->
<%block name="headextra"/> <%block name="headextra"/>
......
...@@ -145,7 +145,7 @@ div.course-wrapper { ...@@ -145,7 +145,7 @@ div.course-wrapper {
div#seq_content { div#seq_content {
h1 { h1 {
background: none; background: none;
margin-bottom: 0; margin-bottom: lh();
padding-bottom: 0; padding-bottom: 0;
border-bottom: none; border-bottom: none;
} }
......
...@@ -59,6 +59,10 @@ footer { ...@@ -59,6 +59,10 @@ footer {
position: relative; position: relative;
top: -5px; top: -5px;
@media screen and (max-width: 780px) {
float: none;
}
li { li {
float: left; float: left;
margin-right: lh(.5); margin-right: lh(.5);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment