Compare commits
2 commits
012aed42b1
...
594947852f
Author | SHA1 | Date | |
---|---|---|---|
594947852f | |||
b318ed5b06 |
3 changed files with 13 additions and 3 deletions
|
@ -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 %}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "lemoncurry",
|
||||
"version": "1.10.1",
|
||||
"version": "1.10.2",
|
||||
"repository": "https://git.00dani.me/00dani/lemoncurry",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
|
|
Loading…
Reference in a new issue