diff options
Diffstat (limited to 'petrichor.js')
-rw-r--r-- | petrichor.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/petrichor.js b/petrichor.js index 5a8089c..db05a99 100644 --- a/petrichor.js +++ b/petrichor.js @@ -133,13 +133,13 @@ function start() else image = user.image; - document.write('<a href="#" class="user" id="user_' + user.name +'"onclick="start_authentication(\'' + user.name + '\')" style="cursor: pointer;">'); + document.write('<a href="#" class="user" id="user_' + user.name +'" onclick="start_authentication(\'' + user.name + '\')">'); document.write('<img class="avatar" src="file:///' + image + '" /><span class="name">'+user.display_name+'</span>'); if (user.name == lightdm.autologin_user && lightdm.autologin_timeout > 0) document.write('<span id="countdown_label"></span>'); - document.write(' </div>'); + document.write('</a>'); } document.write('</div>'); |