diff options
author | Gene Wood <gene_wood@cementhorizon.com> | 2015-04-16 09:01:48 -0700 |
---|---|---|
committer | Gene Wood <gene_wood@cementhorizon.com> | 2015-04-16 09:01:48 -0700 |
commit | df6508550aa54adad22b79d0fa0fb86c356f8ffa (patch) | |
tree | 3a93d9bae8c970fa01b4c63821eba55d61266b29 | |
parent | 96c3612c7b994e0751c73be516b7383661077ce1 (diff) | |
download | server-side-tls-df6508550aa54adad22b79d0fa0fb86c356f8ffa.zip server-side-tls-df6508550aa54adad22b79d0fa0fb86c356f8ffa.tar.gz server-side-tls-df6508550aa54adad22b79d0fa0fb86c356f8ffa.tar.bz2 |
Enable cross browser tooltip with jquery tooltip
This fixes Safari not seeing the tooltip
This doesn't solve mobile devices not being able to mouseover
-rw-r--r-- | ssl-config-generator/index.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ssl-config-generator/index.html b/ssl-config-generator/index.html index 15e1d2c..7e79524 100644 --- a/ssl-config-generator/index.html +++ b/ssl-config-generator/index.html @@ -159,6 +159,10 @@ frontend ft_test oldOpenSSL: 'TLS v1.1 and v1.2 support is only present in OpenSSL 1.0.1 and newer', oldApache: 'TLS v1.1 and v1.2 support is only present in Apache 2.4 and newer' }; + + $(function() { + $( document ).tooltip(); + }); function getVersionConstrainedDirectives(data) { switch (data.server) { |