-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvdg.js
More file actions
24 lines (20 loc) · 1.51 KB
/
vdg.js
File metadata and controls
24 lines (20 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
$('.book').wrap('<div class="container"><div class="col-md-10"></div></div>');
$('.col-md-10').after('<div class="col-md-1"></div>');
$('.col-md-10').before('<div class="col-md-1"></div>');
var inner = $('<div class="navbar"><div class="navbar-inner navbar-fixed-top"><span class="pull-right" id="iconbar"><button type="button" id="toggle_todos" class="btn btn-default btn-xs" title="Toggle TODO notes" alt="Toggle TODO notes">TODO</button><a class="brand" href="https://blog.lnx.cx/"><img src="images/icons/blog-icon-box-rev-32.png" border="0" /></a><a class="brand" href="https://github.com/tbielawa/Virtual-Disk-Guide"><img src="images/icons/GitHub-Mark-32px.png" border="0" /></a><a class="brand" href="http://scribesguides.com/books/vdg/latest/Virtual-Disk-Operations.pdf"><img src="images/icons/pdficon_large.png" border="0" /></a><a class="brand" href="https://plus.google.com/110658143146105247699?rel=author" target="_top" style="text-decoration:none;" border="0"><img src="//ssl.gstatic.com/images/icons/gplus-16.png" alt="Google+" style="border:0;width:16px;height:16px;"/></a></span></div></div>');
$('body').append(inner);
$('#iconbar img').css('width', 16, 'height', 16);
click_handlers();
});
function click_handlers() {
$('#toggle_todos').click(function(obj) {
console.log("toggle");
$('p .remark').toggle();
});
}
</script>
</html>