Skip to content

Commit

Permalink
Added .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Oct 10, 2014
1 parent d022189 commit 5718272
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/screenshots

*.zip
*.crx
*.pem
6 changes: 3 additions & 3 deletions fixed_navbar.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
setInterval(foo, 50);
function foo() {
setInterval(fixNavbar, 50);
function fixNavbar() {
var pagelet_navigation = document.getElementById('pagelet_navigation');
if (document.getElementById('leftColWrapper') === null && pagelet_navigation !== null) {
var mainContainer = document.getElementById('mainContainer');
@@ -9,7 +9,7 @@ function foo() {
var scrollbarHider = document.createElement('div');
var navigationWrapper = document.createElement('div');
leftColWrapper.id = 'leftColWrapper';
scrollbarHider.id = 'scrollbarHider';
scrollbarHider.id = 'scrollbarHider';s

This comment has been minimized.

Copy link
@philipp94831

philipp94831 Oct 10, 2014

Author Owner

Not working! Fix in 5f4e656

navigationWrapper.id = 'navigationWrapper';
mainContainer
.appendChild(leftColWrapper)

0 comments on commit 5718272

Please sign in to comment.