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

Unified Diff: static/js/navbar.js

Issue 29587584: Issue 5635 - Implement website-default navbar component (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Use padding on navbar link, optimise svg Created Nov. 30, 2017, 2 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
Index: static/js/navbar.js
===================================================================
new file mode 100644
--- /dev/null
+++ b/static/js/navbar.js
@@ -0,0 +1,33 @@
+/*******************************************************************************
+ * Navbar Component
juliandoucette 2017/12/01 16:30:43 Perhaps this should *just* be a collapse component
ire 2017/12/08 10:42:21 I think that depends on what we end up extending i
+ ******************************************************************************/
+
+document.addEventListener("DOMContentLoaded", function()
+{
+
+ function Navbar(navbar)
+ {
+ this.navbar = navbar;
+
+ this.navbar
+ .querySelector(".toggle-navbar-collapse")
+ .addEventListener("click", this._onClick.bind(this), false);
+ }
+
+ Navbar.prototype.toggleCollapse = function()
+ {
+ this.navbar.classList.toggle("expanded");
+ };
+
+ Navbar.prototype._onClick = function()
+ {
+ this.toggleCollapse();
+ };
+
+ var navbars = document.getElementsByClassName("navbar");
+ for (var i = 0; i < navbars.length; i++)
+ {
+ new Navbar(navbars[i]);
+ }
+
+}, false);

Powered by Google App Engine
This is Rietveld