diff options
Diffstat (limited to 'js/globe.js')
-rw-r--r-- | js/globe.js | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/js/globe.js b/js/globe.js index 9538d9b..152ad71 100644 --- a/js/globe.js +++ b/js/globe.js @@ -1,4 +1,3 @@ -
function showSignin() {
if (document.getElementById('oid_hidden') !== undefined) {
document.getElementById('oid_hidden').id = 'oid_wrapper';
@@ -26,6 +25,11 @@ function createSignin() { document.body.appendChild(div.firstChild);
}
-
-
-
+//Make unselectable elements unselectable (hack for IE 9.0 and below, which doesn't support our CSS)
+$(document).ready(function()
+{
+ if ($.browser.msie && $.browser.version < 10)
+ {
+ $('.unselectable').find(':not(input)').attr('unselectable', 'on');
+ }
+});
\ No newline at end of file |