mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-07-18 12:32:20 +01:00
69 lines
2.2 KiB
JavaScript
69 lines
2.2 KiB
JavaScript
/*
|
|
* Pointer Events Polyfill: Adds support for the style attribute "pointer-events: none" to browsers without this feature (namely, IE).
|
|
* (c) 2013, Kent Mewhort, licensed under BSD. See LICENSE.txt for details.
|
|
*/
|
|
|
|
// constructor
|
|
function PointerEventsPolyfill(options){
|
|
// set defaults
|
|
this.options = {
|
|
selector: '*',
|
|
mouseEvents: ['click','dblclick','mousedown','mouseup'],
|
|
usePolyfillIf: function(){
|
|
if(navigator.appName == 'Microsoft Internet Explorer')
|
|
{
|
|
var agent = navigator.userAgent;
|
|
if (agent.match(/MSIE ([0-9]{1,}[\.0-9]{0,})/) != null){
|
|
var version = parseFloat( RegExp.$1 );
|
|
if(version < 11)
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
};
|
|
if(options){
|
|
var obj = this;
|
|
$.each(options, function(k,v){
|
|
obj.options[k] = v;
|
|
});
|
|
}
|
|
|
|
if(this.options.usePolyfillIf())
|
|
this.register_mouse_events();
|
|
}
|
|
|
|
// singleton initializer
|
|
PointerEventsPolyfill.initialize = function(options){
|
|
if(PointerEventsPolyfill.singleton == null)
|
|
PointerEventsPolyfill.singleton = new PointerEventsPolyfill(options);
|
|
return PointerEventsPolyfill.singleton;
|
|
};
|
|
|
|
// handle mouse events w/ support for pointer-events: none
|
|
PointerEventsPolyfill.prototype.register_mouse_events = function(){
|
|
// register on all elements (and all future elements) matching the selector
|
|
$(document).on(this.options.mouseEvents.join(" "), this.options.selector, function(e){
|
|
if($(this).css('pointer-events') == 'none'){
|
|
// peak at the element below
|
|
var origDisplayAttribute = $(this).css('display');
|
|
$(this).css('display','none');
|
|
|
|
var underneathElem = document.elementFromPoint(e.clientX, e.clientY);
|
|
|
|
if(origDisplayAttribute)
|
|
$(this)
|
|
.css('display', origDisplayAttribute);
|
|
else
|
|
$(this).css('display','');
|
|
|
|
// fire the mouse event on the element below
|
|
e.target = underneathElem;
|
|
$(underneathElem).trigger(e);
|
|
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
};
|