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

Delta Between Two Patch Sets: adblock-browser-head.html

Issue 4814987935612928: Issue 2213 - landing page for mobile beta launch (Closed)
Left Patch Set: Encoding fix Created April 28, 2015, 8:22 a.m.
Right Patch Set: Make meta tags translatable Created April 29, 2015, 1:12 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « adblock-browser.html ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 <meta name="title" content="Adblock Browser Beta Launch" />
Thomas Greiner 2015/04/29 13:01:06 Actually, I just noticed that those texts are not
saroyanm 2015/04/29 13:13:37 Well noticed Mr Greiner, Fixed, thanks.
2 <meta property="og:title" content="Adblock Browser Beta Launch" />
3 <meta name="description" content="Want Adblock Browser for your smartphone or ta blet? Join the Adblock Browser for Android Beta Google+ community." />
4 <meta property="og:description" content="Want Adblock Browser for your smartphon e or tablet? Join the Adblock Browser for Android Beta Google+ community." />
5
6 <style type="text/css"> 1 <style type="text/css">
7 #content * 2 #content *
8 { 3 {
9 box-sizing: content-box; 4 box-sizing: content-box;
10 } 5 }
11 6
12 #content h1 7 #content h1
13 { 8 {
14 margin-bottom: 28px; 9 margin-bottom: 28px;
15 } 10 }
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 if ("addEventListener" in obj) 129 if ("addEventListener" in obj)
135 { 130 {
136 obj.addEventListener(type, function(ev) 131 obj.addEventListener(type, function(ev)
137 { 132 {
138 if (listener(ev) === false) 133 if (listener(ev) === false)
139 ev.preventDefault(); 134 ev.preventDefault();
140 }, useCapture); 135 }, useCapture);
141 } 136 }
142 else 137 else
143 { 138 {
139 // IE 8
144 if (type == "DOMContentLoaded") 140 if (type == "DOMContentLoaded")
145 type = "readystatechange"; 141 type = "readystatechange";
146 142
147 type = "on" + type; 143 type = "on" + type;
148 // IE 8
Thomas Greiner 2015/04/28 12:52:39 Using "readystatechange" instead of "DOMContentLoa
149 if ("attachEvent" in obj) 144 if ("attachEvent" in obj)
150 { 145 {
151 obj.attachEvent(type, function() 146 obj.attachEvent(type, function()
152 { 147 {
153 if (document.readyState == "complete" && listener(event) === false) 148 if (document.readyState == "complete" && listener(event) === false)
154 event.returnValue = false; 149 event.returnValue = false;
155 }); 150 });
156 } 151 }
157 else 152 else
158 { 153 {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 } 231 }
237 } 232 }
238 }, false); 233 }, false);
239 request.send(params); 234 request.send(params);
240 return false; 235 return false;
241 }, false); 236 }, false);
242 } 237 }
243 addListener(document, "DOMContentLoaded", contentLoad, false); 238 addListener(document, "DOMContentLoaded", contentLoad, false);
244 //]]> 239 //]]>
245 </script> 240 </script>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld