Left: | ||
Right: |
OLD | NEW |
---|---|
1 title=Adblock Plus has been uninstalled | 1 title=Adblock Plus has been uninstalled |
2 template=simple | 2 template=minimal |
3 | 3 |
4 {% set reasons = [ | 4 {% set reasons = [ |
5 ("1v0", "reason-not-installed", "I didn't install Adblock Plus.", ""), | 5 ("1v0", "reason-not-installed", "I didn't install Adblock Plus.", ""), |
6 ("2v0", "reason-slowing-down", "Adblock Plus slowed down my browser.", ""), | 6 ("2v0", "reason-slowing-down", "Adblock Plus slowed down my browser.", ""), |
7 ("3v0", "reason-acceptable-ads", "I don't like the Acceptable Ads program.", " "), | 7 ("3v0", "reason-acceptable-ads", "I don't like the Acceptable Ads program.", " "), |
8 ("4v0", "reason-see-ads", "Adblock Plus didn't block all ads.", ""), | 8 ("4v0", "reason-see-ads", "Adblock Plus didn't block all ads.", ""), |
9 ("5v0", "reason-better-adblocker", "I found better ad blocking software.", ["A dBlock", "uBlock", "uBlock Origin", "Ghostery"]), | 9 ("5v0", "reason-better-adblocker", "I found better ad blocking software.", ["A dBlock", "uBlock", "uBlock Origin", "Ghostery"]), |
10 ("6v0", "reason-break-websites", "Adblock Plus breaks websites that I visit.", ""), | 10 ("6v0", "reason-break-websites", "Adblock Plus breaks websites that I visit.", ""), |
11 ("7v0", "reason-difficult", "I find it difficult to use Adblock Plus.", ""), | 11 ("7v0", "reason-difficult", "I find it difficult to use Adblock Plus.", ""), |
12 ] %} | 12 ] %} |
13 | 13 |
14 <head> | 14 <head> |
15 <meta name="robots" content="noindex" /> | 15 <meta name="robots" content="noindex" /> |
16 <script type="text/javascript"> | 16 <link href="/css/uninstalled.css" rel="stylesheet"> |
17 (function() | |
18 { | |
19 var adblockersList = null; | |
20 function toggleView(element) | |
21 { | |
22 var targetId = element.getAttribute("data-toggle-view"); | |
23 if (targetId) | |
24 document.getElementById(targetId).classList.toggle("hidden"); | |
25 } | |
26 | |
27 function checkSelectedAdblocker() | |
28 { | |
29 var selectedOption = adblockersList[adblockersList.selectedIndex]; | |
30 var element = selectedOption.getAttribute("data-show-element"); | |
31 if (element) | |
32 document.getElementById(element).classList.remove("hidden"); | |
33 else | |
34 { | |
35 element = selectedOption.getAttribute("data-hide-element"); | |
36 document.getElementById(element).classList.add("hidden"); | |
37 } | |
38 } | |
39 | |
40 function init() | |
41 { | |
42 var form = document.getElementById("reasons-form"); | |
43 | |
44 // Create hidden input for GET parameters | |
45 window.location.search.substr(1).split("&").forEach(function(param) | |
46 { | |
47 if (!/.=./.test(param)) | |
48 return; | |
49 | |
50 var paramSplit = param.split("="); | |
51 var input = document.createElement("input"); | |
52 input.setAttribute("type", "hidden"); | |
53 input.setAttribute("name", decodeURIComponent(paramSplit[0])); | |
54 input.setAttribute("value", decodeURIComponent(paramSplit[1])); | |
55 form.appendChild(input); | |
56 }); | |
57 | |
58 // Randomly add reasons | |
59 var reasonsContainer = document.getElementById("reasons"); | |
60 var reasons = document.querySelectorAll("#reasons > li"); | |
61 reasons = Array.prototype.slice.call(reasons); | |
62 reasonsContainer.innerHTML = ""; | |
63 while (reasons.length) | |
64 { | |
65 var randomIndex = Math.floor(Math.random() * (reasons.length -1)); | |
66 var reasonElement = reasons.splice(randomIndex, 1)[0]; | |
67 reasonsContainer.appendChild(reasonElement); | |
68 var checkbox = reasonElement.querySelector("input[type=checkbox]"); | |
69 if (checkbox.checked) | |
70 toggleView(checkbox); | |
71 | |
72 checkbox.addEventListener("change", function(event) | |
73 { | |
74 toggleView(event.target); | |
75 }, false); | |
76 } | |
77 | |
78 adblockersList = document.querySelector("#adblockers select"); | |
79 adblockersList.addEventListener("change", function() | |
80 { | |
81 checkSelectedAdblocker(); | |
82 }, false); | |
83 checkSelectedAdblocker(); | |
84 | |
85 var reasonOtherInput = document.getElementById("reason-other-input"); | |
86 var maxLength = reasonOtherInput.getAttribute("maxlength"); | |
87 var charCounter = document.getElementById("characters-countdown"); | |
88 charCounter.textContent = maxLength; | |
89 reasonOtherInput.addEventListener("keyup", function() | |
90 { | |
91 charCounter.textContent = maxLength - reasonOtherInput.value.length; | |
92 }, false); | |
93 | |
94 var submitButton = document.getElementById("submit-form"); | |
95 submitButton.addEventListener("click", function(event) | |
96 { | |
97 if (!document.querySelector("ul input:checked")) | |
98 { | |
99 event.preventDefault(); | |
100 form.setAttribute("class", "error"); | |
101 } | |
102 else | |
103 { | |
104 form.submit(); | |
105 } | |
106 }, false); | |
107 } | |
108 document.addEventListener("DOMContentLoaded", init, false); | |
109 })(); | |
110 </script> | |
111 </head> | 17 </head> |
112 | 18 |
113 <div class="notification"> | 19 <section id="uninstall-reasons"> |
114 <strong>{{"Did you uninstall Adblock Plus by accident?"|translate("reinstall-h eadline", "Text next to the Reinstallation button")}}</strong> | 20 <div class="container content"> |
ire
2017/12/07 12:36:26
Looks like this element is missing the #content ID
juliandoucette
2017/12/08 16:49:51
Done.
Good catch.
| |
115 {{"index"|linkify}}{{"Reinstall Now"|translate("reinstall", "Reinstall button text")}}</a> | 21 <h1>{{ title | translate("title") }}</h1> |
116 </div> | 22 <p class="lead">{{ "Please select the reason(s) why you uninstalled Adblock Plus:" | translate("reasons-header", "Form heading") }}</p> |
117 <section class="highlighted"> | 23 <form id="reasons-form" action="uninstalled-submit" method="get"> |
118 <h1>{{"Please select the reason(s) why you uninstalled Adblock Plus:"|translat e("reasons-header", "Form heading")}}</h1> | 24 <fieldset> |
119 <form id="reasons-form" action="uninstalled-submit" method="get"> | 25 <ul id="reasons"> |
120 <fieldset> | 26 {%- for reasonId, stringId, value, adblockers in reasons %} |
121 <ul id="reasons"> | 27 <li> |
122 {%- for reasonId, stringId, value, adblockers in reasons %} | 28 <label> |
123 <li> | 29 <input type="checkbox" name="reason" {% if adblockers %} data-to ggle-view="adblockers" {% endif %} value="{{ reasonId }}" /> |
124 <label> | 30 {{ value | translate(stringId, "Uninstallation reason") }} |
125 <input type="checkbox" name="reason" {% if adblockers %} data-toggle -view="adblockers" {% endif %} value="{{reasonId}}" /> | 31 </label> |
126 {{value|translate(stringId, "Uninstallation reason")}} | 32 {%- if adblockers %} |
127 </label> | 33 <fieldset class="hidden" id="adblockers"> |
128 {%- if adblockers %} | 34 <p> |
129 <fieldset class="hidden" id="adblockers"> | 35 <select name="otherAdblockerPredefined"> |
130 <select name="otherAdblockerPredefined"> | 36 {%- for adblocker in adblockers %} |
131 {%- for name in adblockers %} | 37 <option data-hide-element="other-adblocker" value="{{ ad blocker }}">{{ adblocker }}</option> |
132 <option data-hide-element="other-adblocker" value="{{name}}">{{nam e}}</option> | 38 {%- endfor %} |
133 {%- endfor %} | 39 <option data-show-element="other-adblocker" value="Other"> {{ "Other" | translate("other", "Option in list of Adblockers") }}</option> |
134 <option data-show-element="other-adblocker" value="Other">{{"Other "|translate("other", "Option in list of Adblockers")}}</option> | 40 </select> |
135 </select> | 41 <input id="other-adblocker" class="hidden" type="text" name= "otherAdblocker" /> |
136 <input id="other-adblocker" class="hidden" type="text" name="otherAd blocker" /> | 42 </p> |
137 </fieldset> | 43 </fieldset> |
138 {%- endif %} | 44 {%- endif %} |
139 </li> | 45 </li> |
140 {%- endfor %} | 46 {%- endfor %} |
141 <li> | 47 <li> |
142 <label> | 48 <label> |
143 <input id="reason-other" data-toggle-view="reason-other-container" t ype="checkbox" name="reason" value="0v0" /> | 49 <input id="reason-other" data-toggle-view="reason-other-container" type="checkbox" name="reason" value="0v0" /> |
144 {{"Other, namely..."|translate("reason-other", "Last uninstallation reason")}} | 50 {{ "Other, namely..." | translate("reason-other", "Last uninstalla tion reason") }} |
145 </label> | 51 </label> |
146 <fieldset id="reason-other-container" class="hidden"> | 52 <fieldset id="reason-other-container" class="hidden"> |
147 <textarea id="reason-other-input" name="reasonOther" maxlength="300" placeholder="{{"Please explain why you are uninstalling Adblock Plus"|translate ("reason-other-placeholder", "Textarea placeholder text, appears after selecting 'Other, namely...' option")}}"></textarea> | 53 <textarea |
148 <div> | 54 id="reason-other-input" |
149 {{"Characters remaining:"|translate("countdown-text", "Text of ch aracter limit counter appears after selecting 'Other, namely...' option")}} | 55 name="reasonOther" |
150 <span id="characters-countdown"></span> | 56 cols="60" |
151 </div> | 57 rows="4" |
152 </fieldset> | 58 maxlength="300" |
153 </li> | 59 placeholder="{{ "Please explain why you are uninstalling Adblock Plus" | translate("reason-other-placeholder", "Textarea placeholder text, appea rs after selecting 'Other, namely...' option") }}"></textarea> |
154 </ul> | 60 <div> |
155 </fieldset> | 61 {{ "Characters remaining:" | translate("countdown-text", "Text o f character limit counter appears after selecting 'Other, namely...' option") }} |
156 <button id="submit-form">{{"Submit"|translate("submit", "Submit button text" )}}</button> | 62 <span id="characters-countdown"></span> |
157 <span class="error-label">{{"Please select at least one of the options above "|translate("error-msg", "Error message, is being shown after submission if no i tem selected")}}</span> | 63 </div> |
158 </form> | 64 </fieldset> |
159 <p class="disclaimer"> | 65 </li> |
160 {{"By clicking Submit, you are sending your response to Adblock Plus. Please see our <a href='/privacy'>privacy policy</a>."|translate("disclaimer", "Discla imer below form")}} | 66 </ul> |
161 </p> | 67 </fieldset> |
68 <p id="reason-error">{{ "Please select at least one of the options above" | translate("error-msg", "Error message, is being shown after submission if no i tem selected")}}</p> | |
69 <p> | |
70 <button class="button primary">{{ "Submit" | translate("submit", "Submit button text") }}</button> | |
71 </p> | |
72 </form> | |
73 <p class="disclaimer"> | |
74 <small>{{ "By clicking Submit, you are sending your response to Adblock Pl us. Please see our <a href='/privacy'>privacy policy</a>." | translate("disclaim er", "Disclaimer below form") }}</small> | |
75 </p> | |
76 </div> | |
162 </section> | 77 </section> |
78 | |
79 <aside id="reinstall" class="bg-accent" > | |
80 <div class="container content"> | |
81 <p class="lead"> | |
82 {{ "Did you uninstall Adblock Plus by accident?" | translate("reinstall-head line", "Text next to the Reinstallation button") }} | |
83 {{ "index" | linkify(class="button secondary") }}{{ "Reinstall Now" | transl ate("reinstall", "Reinstall button text") }}</a> | |
84 </div> | |
85 </aside> | |
86 | |
87 <script src="/js/uninstalled.js"></script> | |
ire
2017/12/07 12:36:26
Suggest: Implement a scripts block?
juliandoucette
2017/12/08 16:49:52
Acknowledged.
Separately.
| |
OLD | NEW |