appscms-tools-theme 3.6.1 → 3.6.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a99f04b5b13d5ebe28d62bb4fd084c70920693b8535725d69158a7eea4f5f3f
4
- data.tar.gz: 2efeba2dbec502fab373d7b59e863cbdcc7260be975d841f71ca51d60bb0a96e
3
+ metadata.gz: d7f35bc9c5cb4dd196847bc9f0c1d3bf83235373a9b80bfff545a8a8a37d581d
4
+ data.tar.gz: 1e92abcb022e971818065118403bc23e4d8aebe6b67917b56bdc68a00c9408e6
5
5
  SHA512:
6
- metadata.gz: 5d2dec64c58f51c991d9e75987e363f375dbbbce076c8d134531159678f241119ef2e7fa1a17ad4ce5939132b2652f9e5d35bddca30172ae37d58f2e3a4398cd
7
- data.tar.gz: ec825540d4459af891024ea3ec1e946bacf111ed1ba8708053026e8f7acb8d8a964ab5711c94288044a5e8e3a7f60ddf58903972025d6097cabab2d6db1955f2
6
+ metadata.gz: 31e179985d41c8a673ac99e4036237b6d88989f362ecec2ab28dbad90012434b1e20e148174195063c20c74746e7fa3d5ec43f591c0860dbfcf75be74ecb133d
7
+ data.tar.gz: f812b1c05272c5babafe149d0580e910d70b5ca9ec39b2894d5dc215f8ac6e56670f8fac91dfe11b8dd79310121686407dc3e6a3350bf3fedc44e496856d490a
@@ -443,7 +443,7 @@ site.removeJquery != true -%}
443
443
  {%- endif -%}
444
444
 
445
445
  <script defer src="/assets/js/theme.js" crossorigin="anonymous"></script>
446
- {%- if site.userTrackingCount -%}
446
+ {%- if site.userTrackingCount and page.layout == "feature" -%}
447
447
  <script defer src="/assets/js/usageTracking.js"></script>
448
448
  <script defer src="/assets/js/usageTrackingEvents.js"></script>
449
449
  <script defer src="/assets/js/sharePage.js"></script>
data/assets/css/tools.css CHANGED
@@ -1702,7 +1702,7 @@ ol li::marker {
1702
1702
  .shareModal {
1703
1703
  display: none;
1704
1704
  position: fixed;
1705
- z-index: 1;
1705
+ z-index: 100000000000;
1706
1706
  left: 0;
1707
1707
  top: 0;
1708
1708
  width: 100%;
@@ -0,0 +1,6 @@
1
+ const inputBoxOfFeatureFile = document.querySelector("#inputbox");
2
+ if (inputBoxOfFeatureFile) {
3
+ inputBoxOfFeatureFile.addEventListener("click", () => {
4
+ checkUsage();
5
+ });
6
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.1
4
+ version: 3.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
@@ -439,7 +439,7 @@ files:
439
439
  - assets/js/testing-batch.js
440
440
  - assets/js/theme.js
441
441
  - assets/js/usageTracking.js
442
- - assets/js/userTrackingEvents.js
442
+ - assets/js/usageTrackingEvents.js
443
443
  - assets/linkdin.svg
444
444
  - assets/noserverupload.svg
445
445
  - assets/pdf.svg
@@ -1,13 +0,0 @@
1
- const inputBoxOfFeatureFile = document.querySelector("#file");
2
- const inputBoxOfFeatureFiles = document.querySelector("#files");
3
-
4
- if (inputBoxOfFeatureFile) {
5
- inputBoxOfFeatureFile.addEventListener("change", () => {
6
- checkUsage();
7
- });
8
- }
9
- if (inputBoxOfFeatureFiles) {
10
- inputBoxOfFeatureFiles.addEventListener("change", () => {
11
- checkUsage();
12
- });
13
- }