mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-12 23:46:22 +00:00
Added home icon to album public pages
Updated dashboard.js: Uppercase ZIP in Statistics > Albums > Zip Generated. Bumped v1 version string and rebuilt client assets.
This commit is contained in:
parent
5e91554a52
commit
e495d3efd3
2
dist/js/dashboard.js
vendored
2
dist/js/dashboard.js
vendored
File diff suppressed because one or more lines are too long
2
dist/js/dashboard.js.map
vendored
2
dist/js/dashboard.js.map
vendored
File diff suppressed because one or more lines are too long
@ -2567,7 +2567,7 @@ page.getStatistics = (params = {}) => {
|
||||
|
||||
const string = valKeys[j]
|
||||
.replace(/([A-Z])/g, ' $1')
|
||||
.replace(/(^|\s)(cpu|db)/gi, (match, p1, p2) => p1 + p2.toUpperCase())
|
||||
.replace(/(^|\s)(cpu|db|zip)/gi, s => s.toUpperCase())
|
||||
rows += `
|
||||
<tr>
|
||||
<th class="capitalize">${string}</th>
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"1": "1589661242",
|
||||
"1": "1589665998",
|
||||
"2": "1589010026",
|
||||
"3": "1581416390",
|
||||
"4": "1581416390",
|
||||
|
@ -15,6 +15,7 @@
|
||||
{% block stylesheets %}
|
||||
<!-- Stylesheets -->
|
||||
<link rel="stylesheet" href="../libs/bulma/bulma.min.css{{ versions[3] }}">
|
||||
<link rel="stylesheet" href="../libs/fontello/fontello.css{{ versions[1] }}">
|
||||
<link rel="stylesheet" href="../css/style.css{{ versions[1] }}">
|
||||
<link rel="stylesheet" href="../css/thumbs.css{{ versions[1] }}">
|
||||
<link rel="stylesheet" href="../css/album.css{{ versions[1] }}">
|
||||
@ -41,7 +42,7 @@
|
||||
|
||||
{% block content %}
|
||||
{{ super() }}
|
||||
<section class="section">
|
||||
<section class="section has-extra-bottom-padding">
|
||||
<div class="container">
|
||||
<nav class="level">
|
||||
<div class="level-left">
|
||||
@ -124,6 +125,12 @@
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<a class="floating-home-button" title="Back to Safe" href="..">
|
||||
<span class="icon is-medium">
|
||||
<i class="icon-home icon-2x"></i>
|
||||
</span>
|
||||
</a>
|
||||
|
||||
{% if not nojs -%}
|
||||
<noscript>
|
||||
<section id="noscript" class="hero is-fullheight">
|
||||
|
Loading…
Reference in New Issue
Block a user