Commit e53a7820 authored by Randall Leeds's avatar Randall Leeds

Merge pull request #2047 from hypothesis/add-ie-autodetect

Add IE autodetect for dom-text-mapper Annotator plugin
parents e2f99d7d d4b5dc1a
......@@ -59,6 +59,15 @@ if (window.hasOwnProperty('hypothesisRole')) {
}
}
// Simple IE autodetect function
// See for example https://stackoverflow.com/questions/19999388/jquery-check-if-user-is-using-ie/21712356#21712356
var ua = window.navigator.userAgent;
if ((ua.indexOf("MSIE ") > 0) || // for IE <=10
(ua.indexOf('Trident/') > 0) || // for IE 11
(ua.indexOf('Edge/') > 0)) { // for IE 12
options["DomTextMapper"] = {"skip": true}
}
if (window.hasOwnProperty('hypothesisConfig')) {
if (typeof window.hypothesisConfig === 'function') {
options = jQuery.extend(options, window.hypothesisConfig());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment