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

Unified Diff: includes/browser-select.tmpl

Issue 29559620: Issue 5692 - Create Browser Selector with Browser Detection Component for help.eyeo.com (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Patch Set: Created Sept. 29, 2017, 12:02 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « globals/browsers.py ('k') | pages/index.md » ('j') | pages/index.md » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: includes/browser-select.tmpl
===================================================================
new file mode 100644
--- /dev/null
+++ b/includes/browser-select.tmpl
@@ -0,0 +1,18 @@
+
+<label id="browser-select-label">
+ Your Browser:
+</label>
+
+<div id="browser-select" class="custom-select custom-select-dropdown">
+ <button class="custom-select-selected" aria-expanded="false" aria-haspopup="true">
+ </button>
+ <ul class="custom-select-options" role="menu" tabindex="-1" aria-labelledby="browser-select-label">
+ {% for browser in browsers %}
+ <li class="custom-select-option" role="button" tabindex="0" data-value="{{browser.id}}">
+ <img src="/img/png/logo-abp.png" srcset="/img/svg/logo-abp.svg 2x">
ire 2017/09/29 12:13:24 Also, forgot to mention I have been using the ABP
+ {{browser.name}}
+ </li>
+ {% endfor %}
+ </ul>
+</div>
+
« no previous file with comments | « globals/browsers.py ('k') | pages/index.md » ('j') | pages/index.md » ('J')

Powered by Google App Engine
This is Rietveld