This commit is contained in:
Mike Neumegen
2016-06-10 00:33:58 +12:00
parent 06673e2de9
commit a6d30be627
124 changed files with 987 additions and 1627 deletions

View File

@ -1,5 +1,5 @@
---
layout: none
layout: null
search: exclude
---
@ -25,8 +25,8 @@ $(document).ready(function(){
var url = "{{ "/tooltips.json" | prepend: site.baseurl}}";
$.get( url, function( data ) {
/* Bootstrap popover text is defined inside a data-content attribute inside an element. That's
/* Bootstrap popover text is defined inside a data-content attribute inside an element. That's
why I'm using attr here. If you just want to insert content on the page, use append and remove the data-content argument from the parentheses.*/
$.each(data.entries, function(i, page) {
@ -50,7 +50,7 @@ $.get( url, function( data ) {
});
});
});
</script>