Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: pages/uninstall-abp.md

Issue 29329984: Issue 3257 - Create uninstallation page in adblockplus.org (Closed)
Patch Set: Switched to old implementation of shuffling using while Created Nov. 30, 2015, 6:03 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | pages/uninstall-abp-submit.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 title=Adblock Plus has been uninstalled
2 template=simple
3
4 <head>
5 <meta name="robots" content="noindex" />
6 <script type="text/javascript">
7 (function()
8 {
9 var reasons = [
10 ["1v0", "{{reason-not-installed[Uninstallation reason] I didn't install Ad block Plus.}}"],
11 ["2v0", "{{reason-slowing-down[Uninstallation reason] Adblock Plus slowed down my browser.}}"],
12 ["3v0", "{{reason-acceptable-ads[Uninstallation reason] I don't like the A cceptable Ads program.}}"],
13 ["4v0", "{{reason-see-ads[Uninstallation reason] Adblock Plus didn't block all ads.}}"],
14 ["5v0", "{{reason-better-adblocker[Uninstallation reason] I found better a d blocking software.}}"],
15 ["6v0", "{{reason-break-websites[Uninstallation reason] Adblock Plus break s websites that I visit.}}"]
16 ];
17
18 function init()
19 {
20 var form = document.getElementById("reasons-form");
21
22 // Create hidden input for GET parameters
23 window.location.search.substr(1).split("&").forEach(function(param)
24 {
25 if (!/.=./.test(param))
26 return;
27
28 var paramSplit = param.split("=");
29 var input = document.createElement("input");
30 input.setAttribute("type", "hidden");
31 input.setAttribute("name", paramSplit[0]);
32 input.setAttribute("value", paramSplit[1]);
33 form.appendChild(input);
34 });
35
36 // Randomly add reasons
37 while (reasons.length)
38 {
39 var randomIndex = Math.floor(Math.random() * (reasons.length));
Thomas Greiner 2015/12/02 16:41:05 Detail: Unnecessary brackets around `reasons.lengt
40 var reason = reasons.splice(randomIndex, 1)[0];
41 var listElement = document.createElement("li");
42 var labelElement = document.createElement("label");
43 var checkboxElement = document.createElement("input");
44 checkboxElement.setAttribute("type", "checkbox");
45 checkboxElement.setAttribute("name", "reason");
46 checkboxElement.setAttribute("value", reason[0]);
47 var spanElement = document.createElement("span");
48 spanElement.innerHTML = reason[1];
49 labelElement.appendChild(checkboxElement);
50 labelElement.appendChild(spanElement);
51 listElement.appendChild(labelElement);
52 var reasonContainer = document.getElementById("reasons");
53 reasonContainer.insertBefore(listElement, reasonContainer.firstChild);
54 }
55
56 var reasonOtherCheckbox = document.getElementById("reason-other");
57 reasonOtherCheckbox.addEventListener("change", function()
58 {
59 var textArea = document.getElementById("reason-other-input");
60 if (textArea.hasAttribute("class"))
61 textArea.removeAttribute("class")
62 else
63 textArea.setAttribute("class", "hidden");
64 }, false);
65
66 var submitButton = document.getElementById("submit-form");
67 submitButton.addEventListener("click", function(event)
68 {
69 if (!document.querySelector("ul input:checked"))
70 {
71 event.preventDefault();
72 form.setAttribute("class", "error");
73 }
74 else
75 {
76 form.submit();
77 }
78 }, false);
79 }
80 document.addEventListener("DOMContentLoaded", init, false);
81 })();
82 </script>
83 </head>
84
85 <section markdown="1" class="highlighted">
86 #{{reasons-header[Form heading] Please select the reason(s) why you uninstalled Adblock Plus:}}
87
88 <form id="reasons-form" action="uninstall-abp-submit" method="post">
89 <ul id="reasons">
90 <li>
91 <label>
92 <input id="reason-other" type="checkbox" name="reason" value="0v0" />
93 <span>{{reason-other[Last uninstallation reason] Other, namely...}}</spa n>
94 </label>
95 <textarea id="reason-other-input" class="hidden" name="reasonOther" placeh older="{{reason-other-placeholder[Textarea placeholder text, appears after selec ting 'Other, namely...' option] Please explain why you are uninstalling Adblock Plus}}"></textarea>
96 </li>
97 </ul>
98 <button id="submit-form">{{submit[Submit button text] Submit}}</button>
99 <span class="error-label">{{error-msg[Error message, is being shown after subm ission if no item selected] Please select at least one of the options above}}</s pan>
100 </form>
101
102 {{disclaimer[Disclaimer below form] By clicking Submit, you are sending your res ponse to Adblock Plus. Please see our [privacy policy](/privacy).}}
103 {: .disclaimer }
104 </section>
OLDNEW
« no previous file with comments | « no previous file | pages/uninstall-abp-submit.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld