mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
96 lines
2.9 KiB
JavaScript
96 lines
2.9 KiB
JavaScript
(function(window, document, ionic) {
|
|
'use strict';
|
|
|
|
// From the man himself, Mr. Paul Irish.
|
|
// The requestAnimationFrame polyfill
|
|
window.rAF = (function(){
|
|
return window.requestAnimationFrame ||
|
|
window.webkitRequestAnimationFrame ||
|
|
window.mozRequestAnimationFrame ||
|
|
function( callback ){
|
|
window.setTimeout(callback, 1000 / 60);
|
|
};
|
|
})();
|
|
|
|
// Ionic CSS polyfills
|
|
ionic.CSS = {};
|
|
|
|
(function() {
|
|
var d = document.createElement('div');
|
|
var keys = ['webkitTransform', 'transform', '-webkit-transform', 'webkit-transform',
|
|
'-moz-transform', 'moz-transform', 'MozTransform', 'mozTransform'];
|
|
|
|
for(var i = 0; i < keys.length; i++) {
|
|
if(d.style[keys[i]] !== undefined) {
|
|
ionic.CSS.TRANSFORM = keys[i];
|
|
break;
|
|
}
|
|
}
|
|
})();
|
|
|
|
|
|
// polyfill use to simulate native "tap"
|
|
function inputTapPolyfill(ele, e) {
|
|
if(ele.type === "radio" || ele.type === "checkbox") {
|
|
console.log('RADIOPOLY');
|
|
ele.checked = !ele.checked;
|
|
} else if(ele.type === "submit" || ele.type === "button") {
|
|
ele.click();
|
|
} else {
|
|
ele.focus();
|
|
}
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
return false;
|
|
}
|
|
|
|
function tapPolyfill(e) {
|
|
// if the source event wasn't from a touch event then don't use this polyfill
|
|
if(!e.gesture || e.gesture.pointerType !== "touch" || !e.gesture.srcEvent) return;
|
|
|
|
if(e.defaultPrevented) {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
return false;
|
|
}
|
|
|
|
e = e.gesture.srcEvent; // evaluate the actual source event, not the created event by gestures.js
|
|
|
|
var ele = e.target;
|
|
|
|
while(ele) {
|
|
if( ele.tagName === "INPUT" || ele.tagName === "TEXTAREA" || ele.tagName === "SELECT" ) {
|
|
return inputTapPolyfill(ele, e);
|
|
} else if( ele.tagName === "LABEL" ) {
|
|
if(ele.control) {
|
|
return inputTapPolyfill(ele.control, e);
|
|
}
|
|
}
|
|
/* Let ng-click handle this
|
|
else if( ele.tagName === "A" || ele.tagName === "BUTTON" ) {
|
|
ele.click();
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
return false;
|
|
}
|
|
*/
|
|
ele = ele.parentElement;
|
|
}
|
|
|
|
// they didn't tap one of the above elements
|
|
// if the currently active element is an input, and they tapped outside
|
|
// of the current input, then unset its focus (blur) so the keyboard goes away
|
|
var activeElement = document.activeElement;
|
|
if(activeElement && (activeElement.tagName === "INPUT" || activeElement.tagName === "TEXTAREA" || activeElement.tagName === "SELECT")) {
|
|
activeElement.blur();
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// global tap event listener polyfill for HTML elements that were "tapped" by the user
|
|
ionic.on("tap", tapPolyfill, window);
|
|
|
|
})(this, document, ionic);
|