|
1 | 1 | <div id="footer" class="container-fluid pb-40">
|
2 |
| - |
3 |
| -<div class="row feedback-row mb-60"> |
4 |
| - <div class="col-sm-8 col-sm-offset-4 col-md-offset-3 col-lg-8 col-lg-offset-2"> |
5 |
| - <div class="row"> |
6 |
| - <div class="col-md-10 col-md-offset-1"> |
7 |
| - <div class="row feedback"> |
8 |
| - <div class="col-xs-8"> |
9 |
| - <h4>Was this article helpful?</h4> |
10 |
| - </div> |
11 |
| - <div class="col-xs-4 text-right"> |
12 |
| - <button data-value="yes" id="yesButton">Yes</button> |
13 |
| - / |
14 |
| - <button data-value="no" id="noButton">No</button> |
15 |
| - </div> |
16 |
| - </div> |
17 |
| - </div> |
18 |
| - </div> |
19 |
| - </div> |
20 |
| -</div> |
21 |
| - |
22 |
| -<div class="dialog-overlay"> |
23 |
| - <div class="feedback-dialog dialog dialog-enter"> |
24 |
| - <div id="feedback-container"> |
25 |
| - <div id="feedback-window-container"> |
26 |
| - <div id="feedback-form-window"> |
27 |
| - <h3 class="mt-0 mb-5">Give article feedback</h3> |
28 |
| - <p>Tell us how we can improve this article</p> |
29 |
| - <span id="feedback-form-popup-container"></span> |
30 |
| - <form id="feedback-form"> |
31 |
| - <div id="feedback-checkbox-area"> |
32 | 2 | <input id="hidden-sheet-id" type="hidden" value="0c41d166-7ba6-3500-20d5-609d41442f92">
|
33 |
| - <label> |
34 |
| - <input type="checkbox" data-bind="checked: outdatedSample" /> Code samples are inaccurate / outdated. |
35 |
| - </label> |
36 |
| - <span class="required-field" data-bind="visible: outdatedSample"></span> |
37 |
| - <textarea id="feedback-code-sample-text-input" placeholder="Please, specify more details ..." class="feedback-extw__textarea" |
38 |
| - data-bind="visible: outdatedSample, value: inaccurateOutdatedCodeSamplesText"> |
39 |
| - </textarea> |
40 |
| - <label> |
41 |
| - <input type="checkbox" data-bind="checked: otherMoreInformation" /> I expected to find other / more information. |
42 |
| - </label> |
43 |
| - <span class="required-field" data-bind="visible: otherMoreInformation"></span> |
44 |
| - <textarea id="feedback-more-information-text-input" class="feedback-extw__textarea" placeholder="Please, specify what information can be added ..." |
45 |
| - data-bind="visible: otherMoreInformation, value: otherMoreInformationText"> |
46 |
| - </textarea> |
47 |
| - <label> |
48 |
| - <input type="checkbox" data-bind="checked: textErrors" /> There are typos / broken links / broken page elements. |
49 |
| - </label> |
50 |
| - <span class="required-field" data-bind="visible: textErrors"></span> |
51 |
| - <textarea id="feedback-text-errors-text-input" class="feedback-extw__textarea" placeholder="Please, specify what needs to be fixed ..." |
52 |
| - data-bind="visible: textErrors, value: typosLinksElementsText"> |
53 |
| - </textarea> |
54 |
| - <label> |
55 |
| - <input type="checkbox" data-bind="checked: inaccurateContent" /> Content is inaccurate / outdated. |
56 |
| - </label> |
57 |
| - <span class="required-field" data-bind="visible: inaccurateContent"></span> |
58 |
| - <textarea id="feedback-inaccurate-content-text-input" class="feedback-extw__textarea" placeholder="Please, specify which conent ..." |
59 |
| - data-bind="visible: inaccurateContent, value: inaccurateOutdatedContentText"> |
60 |
| - </textarea> |
61 |
| - <label> |
62 |
| - <input type="checkbox" data-bind="checked: otherFeedback" /> Other |
63 |
| - </label> |
64 |
| - <span class="required-field" data-bind="visible: otherFeedback"></span> |
65 |
| - <textarea id="feedback-other-text-input" placeholder="Please, enter more details or not listed feedback ..." class="feedback-extw__textarea" |
66 |
| - data-bind="visible: otherFeedback, value: textFeedback"> |
67 |
| - </textarea> |
68 |
| - <input id="feedback-email-input" type="email" placeholder="email (optional)" data-email-msg="Email format is not valid." |
69 |
| - class="feedback-extw__input input" data-bind="value: email" /> |
70 |
| - <label> |
71 |
| - <input type="checkbox" data-bind="checked: acceptFeedbackContact" /> By checking this box you consent to Progress contacting you by email about your response on this page. |
72 |
| - </label> |
73 |
| - </div> |
74 |
| - </form> |
75 |
| - <div class="feedback-extw__foot"> |
76 |
| - <p class="mt-30 mb-0" style="text-align: right;"> |
77 |
| - <button class="button ghost dialog-hide">Cancel</button> |
78 |
| - <button class="button dialog-hide" type="submit">Submit</button> |
79 |
| - </p> |
80 |
| - </div> |
81 |
| - </div> |
82 |
| - </div> |
83 |
| - </div> |
84 |
| - </div> |
85 |
| -</div> |
86 |
| - |
87 |
| - <script> |
88 |
| - $(document).ready(function() { |
89 |
| - initFeedbackForm({ |
90 |
| - dialog: ".dialog-overlay", |
91 |
| - closeButtons: ".dialog-hide", |
92 |
| - container: ".feedback" |
93 |
| - }); |
94 |
| - }); |
95 |
| -</script> |
96 |
| - |
97 |
| - <script> |
98 |
| - $(".read-prev").hover(function() { |
99 |
| - $(".title-prev").show(); |
100 |
| - }, function() { |
101 |
| - $(".title-prev").hide(); |
102 |
| - }); |
103 |
| - |
104 |
| - $(".read-next").hover(function() { |
105 |
| - $(".title-next").show(); |
106 |
| - }, function() { |
107 |
| - $(".title-next").hide(); |
108 |
| - }); |
109 |
| - |
110 |
| - $(".all-components").click(function() { |
111 |
| - $(".all-components").toggleClass("show-components"); |
112 |
| - $('.sidetoggle').toggleClass("collapse"); |
113 |
| - $('.sidetoc').toggleClass("show-components"); |
114 |
| - $(".sidefilter").toggleClass("show-components"); |
115 |
| - }); |
116 |
| -</script> |
117 |
| - |
118 |
| - |
119 |
| - <div class="row"> |
| 3 | + {{>partials/feedback}} |
| 4 | + <div class="row mt-60"> |
120 | 5 | <div class="col-lg-8 col-lg-offset-2">
|
121 | 6 | <div class="row">
|
122 | 7 | <div class="col-md-12 col-lg-10 col-lg-offset-1">
|
|
0 commit comments