diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2015-07-06 23:52:48 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2015-07-06 23:52:48 +0200 |
| commit | 246ac1d5966639f2036795d859cb2b195c762236 (patch) | |
| tree | 020806a1cf5a445f198de94de5366af2bc86d467 | |
| parent | 69e4391bfb53ce2d7a3a42f69e37bbf136d3ee09 (diff) | |
| download | phorkie-246ac1d5966639f2036795d859cb2b195c762236.tar.gz phorkie-246ac1d5966639f2036795d859cb2b195c762236.zip | |
fix "reload" button on autologin
| -rw-r--r-- | www/js/autologin.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/autologin.js b/www/js/autologin.js index ccd20f2..96a524c 100644 --- a/www/js/autologin.js +++ b/www/js/autologin.js @@ -29,7 +29,7 @@ function notifyAutologin(data) + ' style="display: none; position: fixed; top: 0px; left: 0px; width: 100%; text-align: center">' + 'Welcome, ' + data.name + '.' + ' You have been logged in - ' - + '<a href="#" onclick="document.location.reload();">reload</a> to see it.' + + '<a href="#" onclick="document.location.reload(); return false;">reload</a> to see it.' + '</div>' ); $('#autologinnotifier').click(function(event) { |
