1
0
Fork 0
mirror of https://gitlab.com/Shinobi-Systems/ShinobiCE.git synced 2025-03-09 15:40:15 +00:00
ShinobiCE/web/libs/js/extra.js
2018-10-24 21:42:47 -07:00

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.')
}