1
0
Fork 0
mirror of https://gitlab.com/Shinobi-Systems/ShinobiCE.git synced 2025-03-09 15:40:15 +00:00

Blue Turtle - The Refactoring

This commit is contained in:
Moe 2018-10-24 21:42:47 -07:00
parent 04011678fb
commit b7d08eb500
67 changed files with 11651 additions and 8452 deletions

11
web/libs/js/extra.js Normal file
View file

@ -0,0 +1,11 @@
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.')
}