168 lines
5.8 KiB
HTML
168 lines
5.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<%block name="title"><title>MITx 6.002x</title></%block>
|
|
|
|
<link rel="stylesheet" href="${ settings.LIB_URL }jquery.treeview.css" type="text/css" media="all" />
|
|
<link rel="stylesheet" href="/static/css/application.css" type="text/css" media="all" />
|
|
|
|
<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 }swfobject/swfobject.js"></script>
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="/static/js/html5shiv.js"></script>
|
|
<![endif]-->
|
|
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({
|
|
tex2jax: {inlineMath: [["\\(","\\)"]],
|
|
displayMath: [["\\[","\\]"]]}
|
|
});
|
|
</script>
|
|
<script type="text/javascript" src="${ settings.LIB_URL }mathjax-MathJax-c9db6ac/MathJax.js?config=TeX-AMS_HTML-full"></script>
|
|
|
|
<%block name="headextra"/>
|
|
|
|
</head>
|
|
|
|
<body class="<%block name="bodyclass"/>">
|
|
<!--[if lte IE 9]>
|
|
<p class="ie-warning">You are using a browser that is not supported by <em>MITx</em>, and you might not be able to complete pieces of the course. Please download the latest version of <a href="http://www.mozilla.org/en-US/firefox/new/">Firefox</a> or <a href="https://www.google.com/chrome">Chrome</a> to get the full experience.</p>
|
|
<![endif]-->
|
|
|
|
${self.body()}
|
|
<%block name="bodyextra"/>
|
|
|
|
<footer>
|
|
<!-- Template based on a design from http://www.dotemplate.com/ - Donated $10 (pmitros) so we don't need to include credit. -->
|
|
<p> Copyright © 2012. MIT. <a href="/t/copyright.html">Some rights reserved.</a>
|
|
</p>
|
|
<nav>
|
|
<ul class="social">
|
|
<li class="linkedin">
|
|
<a href="http://www.linkedin.com/groups/Friends-Alumni-MITx-4316538">Linked In</a>
|
|
</li>
|
|
<li class="twitter">
|
|
<a href="https://twitter.com/#!/MyMITx">Twitter</a>
|
|
</li>
|
|
<li class="facebook">
|
|
<a href="http://www.facebook.com/pages/MITx/378592442151504">Facebook</a>
|
|
</li>
|
|
</ul>
|
|
<ul>
|
|
<li><a href="#feedback_div" rel="leanModal">Feedback</a></li>
|
|
<li class="calc-main">
|
|
<a href="#" class="calc">Calculator</a>
|
|
|
|
<div id="calculator_wrapper">
|
|
<form id="calculator">
|
|
<div class="input-wrapper">
|
|
<input type="text" id="calculator_input" />
|
|
|
|
<div class="help-wrapper">
|
|
<a href="#">Hints</a>
|
|
<dl class="help">
|
|
<dt>Suffixes:</dt>
|
|
<dd> %kMGTcmunp</dd>
|
|
<dt>Operations:</dt>
|
|
<dd>^ * / + - ()</dd>
|
|
<dt>Functions:</dt>
|
|
<dd>sin, cos, tan, sqrt, log10, log2, ln, arccos, arcsin, arctan, abs </dd>
|
|
<dt>Constants</dt>
|
|
<dd>e, pi</dd>
|
|
|
|
<!-- Students won't know what parallel means at this time. Complex numbers aren't well tested in the courseware, so we would prefer to not expose them. If you read the comments in the source, feel free to use them. If you run into a bug, please let us know. But we can't officially support them right now.
|
|
|
|
<dt>Unsupported:</dt> <dd>||, j </dd> -->
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
<input id="calculator_button" type="submit" value="="/>
|
|
<input type="text" id="calculator_output" readonly />
|
|
</form>
|
|
|
|
</div>
|
|
</li>
|
|
<li><a href="/s/help.html">Help</a></li>
|
|
<li><a href="/logout">Log out</a></li>
|
|
</ul>
|
|
</nav>
|
|
</footer>
|
|
|
|
<div id="feedback_div" class="leanModal_box">
|
|
<h1>Feedback for MITx</h1>
|
|
<p>Found a bug? Got an idea for improving our system? Let us know.</p>
|
|
|
|
<form>
|
|
<ol>
|
|
<li><label>Subject:</label> <input type="text" id="feedback_subject"></li>
|
|
<li><label>Feedback: </label><textarea id="feedback_message"></textarea></li>
|
|
<li><input id="feedback_button" type="button" value="Submit"></li>
|
|
</ol>
|
|
</form>
|
|
|
|
</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/jquery.cookie.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>
|
|
// Feedback form
|
|
$(function() {
|
|
$("#feedback_button").click(function(){
|
|
postJSON("/send_feedback", {"subject":$("#feedback_subject").attr("value"),
|
|
"url":document.URL,
|
|
"message":$("#feedback_message").attr("value")},
|
|
function(data){
|
|
$("#feedback_subject").attr("value","");
|
|
$("#feedback_message").attr("value","");
|
|
$("#feedback_div").html("Feedback submitted. Thank you");
|
|
});
|
|
});
|
|
});
|
|
|
|
// Calculator
|
|
$(function() {
|
|
|
|
$("#calculator_wrapper").hide();
|
|
|
|
$(".calc").click(function(){
|
|
$("#calculator_wrapper").slideToggle("fast");
|
|
$("#calculator_wrapper #calculator_input").focus();
|
|
$(this).toggleClass("closed");
|
|
return false;
|
|
});
|
|
|
|
$("div.help-wrapper a").hover(function(){
|
|
$(".help").toggleClass("shown");
|
|
|
|
});
|
|
|
|
$("div.help-wrapper a").click(function(){
|
|
return false;
|
|
});
|
|
$("form#calculator").submit(function(e){
|
|
e.preventDefault();
|
|
$.getJSON("/calculate", {"equation":$("#calculator_input").attr("value")},
|
|
function(data){
|
|
$("#calculator_output").attr("value",data.result);
|
|
});
|
|
});
|
|
});
|
|
|
|
$(function(){
|
|
$("a[rel*=leanModal]").leanModal();
|
|
});
|
|
</script>
|
|
|
|
<%block name="js_extra"/>
|
|
</body>
|
|
</html>
|