mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
sort by last used in context menu
This commit is contained in:
parent
926e87c6fe
commit
fcb7972fca
@ -586,6 +586,21 @@ function autofillPage() {
|
|||||||
|
|
||||||
function sortLogins(logins) {
|
function sortLogins(logins) {
|
||||||
logins.sort(function (a, b) {
|
logins.sort(function (a, b) {
|
||||||
|
var lastUsedA = a.localData && a.localData.lastUsedDate ? a.localData.lastUsedDate : null;
|
||||||
|
var lastUsedB = b.localData && b.localData.lastUsedDate ? b.localData.lastUsedDate : null;
|
||||||
|
if (lastUsedA && lastUsedB && lastUsedA > lastUsedB) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (lastUsedA && lastUsedB && lastUsedA < lastUsedB) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (lastUsedA && !lastUsedB) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (!lastUsedA && lastUsedB) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
var nameA = (a.name + '_' + a.username).toUpperCase();
|
var nameA = (a.name + '_' + a.username).toUpperCase();
|
||||||
var nameB = (b.name + '_' + b.username).toUpperCase();
|
var nameB = (b.name + '_' + b.username).toUpperCase();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user