diff -r 892980a3af09 -r 21ac67ebf9e7 design/tooltip.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/design/tooltip.html Tue Jul 18 18:15:51 2017 +0200 @@ -0,0 +1,83 @@ +--- +layout: default +javascript: | + console.log('yolo'); + + $(function(){ + $("#tooltip").popover({ + placement: 'bottom', + title: 'annotation', + html: true, + content: $('#annotation-control').html() + }); + + $("#tooltip2").popover({ + placement: 'bottom', + title: 'annotation', + html: true, + content: $('#annotation-control-2').html() + }); + + $('.metacategory').change(function(e){ + console.log(e); + }); + + }); +--- + +