jekyll-cessda-docs 0.1.10.pre.d587f893cc63298eb1de3c47b89bca57ff44de3f → 0.1.10.pre.f77bbe9cb46f31a0330b9cfa0d97f2f030f0677a

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: f266cb8655f40538d03a6901f50444da9441f2151e8cc799b145158a224b0423
4
- data.tar.gz: f6a02b2788142ea1de721142a9399a68d019c997dcf518ed47167581da20d5cc
3
+ metadata.gz: 82c97173acad00d8e4b4236528e909e105dd0be7e689c26cc39b6ca7e03ecc70
4
+ data.tar.gz: 7faada897a835ad0d4aafda87821d07e9cd3ff2cc5c6fae7ad4925307a4dff41
5
5
  SHA512:
6
- metadata.gz: 85610c798756a14fc8dc1a8c896456d68ddb97e21503673481e5da6ffd81a2842b4a64273bddbd4df432a26d875964ddf95d33b87ee3234e25da28a366ac40aa
7
- data.tar.gz: eea7063c2c6dd4c0fae75999ed9b96f536ce13d281fd4badeb0ad08b9a4178b781665c7f3e5809621fac0d7617d16debf8f87516bbe6791003ba13212ea62673
6
+ metadata.gz: 60be5e4805b607f17d75fc7f1e4877900b35183173f9efbb28c85e7fa169f6009de09ae40bf759484393aa902d2870cd90bf6708889691fe0aa6fed70836ca6c
7
+ data.tar.gz: 6238800ef5fd7c4dd58fb967ee05e7d566a34c124b0f663b81f7b694a178d82c553611fc817c2dc254dd015102d3a3d493d7350acc51de951f0edfc779f1db8d
@@ -199,7 +199,6 @@ layout: table_wrappers
199
199
  <a href="https://www.cessda.eu/Tools-Services">CESSDA Tools &amp; Services</a>
200
200
  </div>
201
201
  </div>
202
- {% include feedback.html %}
203
202
  </footer>
204
203
  {% if site.send_feedback_snippet and site.send_feedback_snippet != "" and site.send_feedback_snippet != nil %}
205
204
  {{ site.send_feedback_snippet }}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-cessda-docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10.pre.d587f893cc63298eb1de3c47b89bca57ff44de3f
4
+ version: 0.1.10.pre.f77bbe9cb46f31a0330b9cfa0d97f2f030f0677a
5
5
  platform: ruby
6
6
  authors:
7
7
  - openconcept
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-29 00:00:00.000000000 Z
11
+ date: 2023-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -50,7 +50,6 @@ files:
50
50
  - _config.yml
51
51
  - _includes/css/custom.scss.liquid
52
52
  - _includes/css/just-the-docs.scss.liquid
53
- - _includes/feedback.html
54
53
  - _includes/fix_linenos.html
55
54
  - _includes/glossary.html
56
55
  - _includes/glossary_table.html
@@ -1,57 +0,0 @@
1
- <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
2
-
3
- <button id="zammad-feedback-form" style="position: fixed; right: 0; bottom: 0; font-size: 14px; color: white; background-color: #4e4d56; border: none; padding: 0px 10px; height: 40px; line-height: 40px;">Send Feedback</button>
4
- <script id="zammad_form_script" src="https://eosc-helpdesk.eosc-portal.eu/assets/form/form.js"></script>
5
- <script>
6
- $(function() {
7
- $('#zammad-feedback-form').ZammadForm({
8
- agreementMessage:' Accept CESSDA <a target="_blank" href="https://www.cessda.eu/Privacy-policy">Data Privacy Policy</a> & <a target="_blank" href="https://www.cessda.eu/Acceptable-Use-Policy">Acceptable Use Policy</a>',
9
- messageTitle: 'Service Documentation Feedback Form',
10
- messageSubmit: 'Submit',
11
- messageThankYou: 'Thank you for your inquiry (#%s)! We\'ll contact you as soon as possible.',
12
- modal: true,
13
- targetGroupID: 31,
14
- attributes: [
15
- {
16
- display: 'Name',
17
- name: 'name',
18
- tag: 'input',
19
- type: 'text',
20
- id: 'zammad-form-name',
21
- required: true,
22
- placeholder: 'Your Name',
23
- defaultValue: '',
24
- },
25
- {
26
- display: 'Email',
27
- name: 'email',
28
- tag: 'input',
29
- type: 'email',
30
- id: 'zammad-form-email',
31
- required: true,
32
- placeholder: 'Your Email',
33
- defaultValue: '',
34
- },
35
- {
36
- display: 'Subject',
37
- name: 'title',
38
- tag: 'input',
39
- id: 'zammad-form-subject',
40
- required: false,
41
- placeholder: 'My subject',
42
- defaultValue: '',
43
- },
44
- {
45
- display: 'Message',
46
- name: 'body',
47
- tag: 'textarea',
48
- id: 'zammad-form-body',
49
- required: true,
50
- placeholder: 'Your Message...',
51
- defaultValue: '',
52
- rows: 7,
53
- }
54
- ]
55
- });
56
- });
57
- </script>