appscms-tools-theme 2.0.6 → 2.0.8

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: '08ae155c2265d620eeca8a1821692e530f460261ad72ccb2ddf1bf7795f52310'
4
- data.tar.gz: d002795a5a166579dccba7d608fe808210f259dfd721d8b5322b4befbbc38def
3
+ metadata.gz: a3c832b02ff9611ebaed2c0e6f4b84cb838c2dfdf004c4ed506ac1d32304b248
4
+ data.tar.gz: f1258a4b746691ac89a015fe7a94b7902ab2dc169a42318c46259c2c48d0610b
5
5
  SHA512:
6
- metadata.gz: d4477a654d1cdd04eb748be5a878b2bdcc021e3059c3375b5c764d85c9dabc7457d7e093fdb3203a451cc5386cfaad96ca673d6bff97ab4a46e982061ba3904d
7
- data.tar.gz: d95c06208db5d67cbe77d4f030a22e24f2d40863a3506b031806841d28c7aabf099a6185f9646780baf5dbeb0b31744d863958cff1bab703db33c19876986db8
6
+ metadata.gz: e07cc7ecef25e2baa9e1bf115318a1febcb6e54045ae7762e77bd384d3acb0e1258da182d085f78a245fbbe59715e8f170316775e877cd7263d1f261fbd62dc5
7
+ data.tar.gz: e197a51b718fe15508dde0c6b6bb1c30e056915f9ed35e15c866ca844aba2510ddc306798575b35ae45a7b7abf78f69c55b04cf0b83e75a89bf21a65c707d6d7
@@ -208,5 +208,6 @@
208
208
  {%- endif -%}
209
209
 
210
210
  {%- include monumetric/ads.html -%}
211
+ {%- include monumetric/profitablecpmgate.html -%}
211
212
 
212
213
  </head>
@@ -0,0 +1,52 @@
1
+ {% if page.url != '/' %}
2
+ {% if jekyll.environment == 'production' and site.profitablecpmgateId %}
3
+ <script>
4
+ const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
5
+ eventList.forEach(function (event) {
6
+ window.addEventListener(event, triggerScripts, { passive: true })
7
+ });
8
+
9
+ function triggerScripts() {
10
+ runScripts();
11
+ eventList.forEach(function (event) {
12
+ window.removeEventListener(event, triggerScripts, { passive: true });
13
+ });
14
+ }
15
+
16
+ function runScripts() {
17
+ document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
18
+ scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
19
+ });
20
+ }
21
+ </script>
22
+ <script type="text/javascript" delay="/assets/js/append-div.js"></script>
23
+ <script async="async" type="text/javascript" data-cfasync="false"
24
+ delay="//pl17448257.profitablecpmgate.com/{{site.profitablecpmgateId}}/invoke.js"></script>
25
+ {% endif %}
26
+
27
+ {% if jekyll.environment == 'development' and site.profitablecpmgateId %}
28
+ <script>
29
+ const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
30
+ eventList.forEach(function (event) {
31
+ window.addEventListener(event, triggerScripts, { passive: true })
32
+ });
33
+
34
+ function triggerScripts() {
35
+ runScripts();
36
+ eventList.forEach(function (event) {
37
+ window.removeEventListener(event, triggerScripts, { passive: true });
38
+ });
39
+ }
40
+
41
+ function runScripts() {
42
+ document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
43
+ scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
44
+ });
45
+ }
46
+ </script>
47
+ <script type="text/javascript" delay="/assets/js/append-div.js"></script>
48
+ <script async="async" type="text/javascript" data-cfasync="false"
49
+ delay="//pl17448257.profitablecpmgate.com/{{site.profitablecpmgateId}}/invoke.js"></script>
50
+
51
+ {% endif %}
52
+ {% endif %}
@@ -67,16 +67,16 @@
67
67
  </div>
68
68
  </div>
69
69
  {%- if site.noFeatureBox == true -%}
70
- <div class="feature-content-box">
70
+ <div class="feature-content-box" id="theme-content-box">
71
71
  {{content}}
72
72
  </div>
73
73
  {%- else -%}
74
74
  {%- if page.noBox == true -%}
75
- <div class="feature-content-box">
75
+ <div class="feature-content-box" id="theme-content-box">
76
76
  {{content}}
77
77
  </div>
78
78
  {%- else -%}
79
- <div class="box-padding">
79
+ <div class="box-padding" id="theme-content-box">
80
80
  <div class="d-flex" id="__cond-922051">
81
81
  <div class="flex-container">
82
82
  <div class="flex-class">
data/_layouts/home.html CHANGED
@@ -85,7 +85,7 @@
85
85
  </div>
86
86
  {%- endif -%}
87
87
  {%- endif -%}
88
- <div class="home-content-box">
88
+ <div class="home-content-box" id="theme-content-box">
89
89
  {{content}}
90
90
  </div>
91
91
  {%- if homeData.TEXTUAL_CONTENT -%}
@@ -0,0 +1,10 @@
1
+ ---
2
+ ---
3
+ function insertAfter(referenceNode, newNode) {
4
+ referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling)
5
+ }
6
+ let themeContentBox = document.getElementById('theme-content-box')
7
+ const div = document.createElement('div')
8
+ const profitablecpmgateId = '{{site.profitablecpmgateId}}'
9
+ div.setAttribute('id', `container-${profitablecpmgateId}`)
10
+ insertAfter(themeContentBox, div)
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: 2.0.6
4
+ version: 2.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
@@ -118,6 +118,7 @@ files:
118
118
  - _includes/languages/languages.html
119
119
  - _includes/monumetric/ads.html
120
120
  - _includes/monumetric/monumetric.html
121
+ - _includes/monumetric/profitablecpmgate.html
121
122
  - _includes/nofiletransfer/nofiletransfer.html
122
123
  - _includes/paginationBlogPage.html
123
124
  - _includes/paginationPostPage.html
@@ -298,6 +299,7 @@ files:
298
299
  - assets/js/TopScroll.js
299
300
  - assets/js/adBlocker.js
300
301
  - assets/js/ads.js
302
+ - assets/js/append-div.js
301
303
  - assets/js/featureResult.js
302
304
  - assets/js/googledrive.js
303
305
  - assets/js/homeResult.js