diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2016-02-22 10:54:29 +0000 |
---|---|---|
committer | Einar Egilsson <einar@einaregilsson.com> | 2016-02-22 10:54:29 +0000 |
commit | 18ff916419996e991fd5679b74850938182495fa (patch) | |
tree | 2363e515e5ca6843e6c042aaf36c92de40f39e59 /js/app.js | |
parent | 383476f3d7bba5e343e66868b2d5dfa780009882 (diff) |
Make private mode work in all browsers
Diffstat (limited to 'js/app.js')
-rw-r--r-- | js/app.js | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -3,8 +3,10 @@ //are used by multiple controllers then we'll define them here. var redirectorApp = angular.module('redirectorApp', []); - - +//To make the private stuff in Firefox work properly +window.addEventListener('DOMContentLoaded', function() { + document.body.classList.remove('private'); +}); |