appscms-tools-theme 1.1.5 → 1.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/head/index.html +2 -1
- data/assets/js/multiselect.js +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab262b7915008e88c23d27902315a577bd32840bb8910957cff1ec1de08b9734
|
4
|
+
data.tar.gz: 3f5bf7d712de8f742203517d2eeb9002d0631b355bd20b7f2a034470b588f606
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b80f31bd5c19f29a35a34fcc9ccf85667ee775fcff4dd2fce809f1810188dfaea2a637a958d9e1b212b90be17e48ded964fd63c299200cfbffdeae6f8dbe0fa8
|
7
|
+
data.tar.gz: 47ce43dd715ed372399646b2ca5c796a6ef2568531b61a7a8b73ea0fbccb18173850f0ed0961f6628d06ac1e2ff6aa704e51ba44235d250bb5218db15628b3e2
|
data/_includes/head/index.html
CHANGED
@@ -34,9 +34,10 @@
|
|
34
34
|
<meta data-rh="true" name="twitter:title" content="{{title}}">
|
35
35
|
<meta data-rh="true" name="twitter:description" content="{{description}}">
|
36
36
|
<meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}">
|
37
|
-
{%- if page.noindex
|
37
|
+
{%- if page.noindex -%}
|
38
38
|
<meta name="robots" content="noindex">
|
39
39
|
{%- endif -%}
|
40
|
+
|
40
41
|
{%- if site.pwa -%}
|
41
42
|
<link rel="manifest" href="/assets/js/manifest.json">
|
42
43
|
{%- endif -%}
|
data/assets/js/multiselect.js
CHANGED
@@ -92,7 +92,7 @@ function chooseFromDropbox() {
|
|
92
92
|
if (files.length < 0) {
|
93
93
|
return
|
94
94
|
}
|
95
|
-
var dropboxArray=
|
95
|
+
var dropboxArray=files.map(async(file)=>{
|
96
96
|
showLoader()
|
97
97
|
const url = new URL(file.link)
|
98
98
|
const response = await fetch(url).then((res) => res.blob())
|