Compare commits

...

2 commits

3 changed files with 13 additions and 3 deletions

View file

@ -97,6 +97,11 @@
{% block foot %}
<script type="text/javascript">
tippy('.profiles [title]', {arrow: true});
tippy('.profiles [title]', {
arrow: true,
content: function(element) {
return element.getAttribute('title');
}
});
</script>
{% endblock %}

View file

@ -71,6 +71,11 @@
{% block foot %}
<script type="text/javascript">
tippy('[data-tippy-theme]', {arrow: true});
tippy('[data-tippy-theme]', {
arrow: true,
content: function(element) {
return document.querySelector(element.getAttribute('data-tippy-html')).innerHTML;
}
});
</script>
{% endblock %}

View file

@ -1,6 +1,6 @@
{
"name": "lemoncurry",
"version": "1.10.1",
"version": "1.10.2",
"repository": "https://git.00dani.me/00dani/lemoncurry",
"license": "MIT",
"devDependencies": {