added a sidebar element, an index to let ppl know how to get started, and some logic to get users to the tutorials and back into the app regardless of auth or not

This commit is contained in:
Ken Johnson
2013-04-25 02:11:11 -04:00
parent 41371cff1e
commit 726526eabf
5 changed files with 30 additions and 25 deletions
+7
View File
@@ -0,0 +1,7 @@
<script type="text/javascript">
function makeActive(){
$('li[id="tutorials_home"]').addClass('active');
};
$(document).ready(makeActive);
</script>