diff options
author | leimerp <leimerp@users.noreply.github.com> | 2019-12-30 21:50:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-30 21:50:40 +0100 |
commit | 80a9d315589b10b32db2f88de6d1a076956b53d4 (patch) | |
tree | c3d89152b372408116428c983d422c70cc99199c /lib/scripts | |
parent | 9ec1015a9efcdac85c2412ac998c4191fd6d5bbd (diff) | |
download | dokuwiki-80a9d315589b10b32db2f88de6d1a076956b53d4.tar.gz dokuwiki-80a9d315589b10b32db2f88de6d1a076956b53d4.zip |
allow windows shares for Edge browser
Diffstat (limited to 'lib/scripts')
-rw-r--r-- | lib/scripts/behaviour.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scripts/behaviour.js b/lib/scripts/behaviour.js index 18308d68a..da8eec7e7 100644 --- a/lib/scripts/behaviour.js +++ b/lib/scripts/behaviour.js @@ -120,7 +120,7 @@ var dw_behaviour = { * @author Michael Klier <chi@chimeric.de> */ checkWindowsShares: function() { - if(!LANG.nosmblinks || navigator.userAgent.match(/(Trident|MSIE)/)) { + if(!LANG.nosmblinks || navigator.userAgent.match(/(Trident|MSIE|Edge)/)) { // No warning requested or none necessary return; } |