minor tweaks. Removed tooltip.js include

This commit is contained in:
Nils Norman Haukås 2015-10-04 17:30:29 +02:00
parent 380d345c1c
commit ae8a9ee63e
2 changed files with 1 additions and 5 deletions

View file

@ -54,8 +54,7 @@ $(document).ready(function () {
};
htmlList = '<ul id="senses">' +
htmlList.join('') +
'</ul>';
htmlList.join('') + '</ul>';
$('#senses').replaceWith(htmlList);
@ -76,8 +75,6 @@ $(document).ready(function () {
Take the existing content, make it narrower and
insert a menu for tagging up content.
*/
function addMenu () {
if (isMenuShown) return;
$.get('example1.menu.html', function (htmlData) {

View file

@ -6,7 +6,6 @@
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/js/tooltip.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="content_script.js"></script>
</head>