mirror of
https://gitlab.com/Shinobi-Systems/ShinobiCE.git
synced 2025-03-09 15:40:15 +00:00
11 lines
330 B
JavaScript
11 lines
330 B
JavaScript
var browserCheck = {}
|
|
browserCheck.forLastPass = function(){
|
|
var lastpass = navigator.plugins['LastPass'];
|
|
if (lastpass === undefined) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
if(browserCheck.forLastPass){
|
|
alert('It appears you are using LastPass. Be aware that LastPass is known to cause issues with the form fields.')
|
|
}
|