1
0
mirror of https://github.com/lancedikson/bowser synced 2024-10-27 20:34:22 +00:00

fix strictMode for isUnsupportedBrowser

This commit is contained in:
Denis Demchenko 2016-07-07 18:02:18 +03:00
parent 93f2fa0a0f
commit a28903bd29

View File

@ -528,7 +528,10 @@
}
}
}
return strictMode; // not found
if (strictMode) {
return false; // not found
}
}
/**