Merge branch 'master' into gh-pages-master
This commit is contained in:
commit
61bbb8bae7
5
dist/leaflet-src.js
vendored
5
dist/leaflet-src.js
vendored
@ -146,7 +146,10 @@ L.Util = {
|
||||
|
||||
var cancelFn = window.cancelAnimationFrame ||
|
||||
getPrefixed('CancelAnimationFrame') ||
|
||||
getPrefixed('CancelRequestAnimationFrame') || window.clearTimeout;
|
||||
getPrefixed('CancelRequestAnimationFrame') ||
|
||||
function (id) {
|
||||
window.clearTimeout(id);
|
||||
};
|
||||
|
||||
|
||||
L.Util.requestAnimFrame = function (fn, context, immediate, element) {
|
||||
|
2
dist/leaflet.js
vendored
2
dist/leaflet.js
vendored
File diff suppressed because one or more lines are too long
@ -120,7 +120,10 @@ L.Util = {
|
||||
|
||||
var cancelFn = window.cancelAnimationFrame ||
|
||||
getPrefixed('CancelAnimationFrame') ||
|
||||
getPrefixed('CancelRequestAnimationFrame') || window.clearTimeout;
|
||||
getPrefixed('CancelRequestAnimationFrame') ||
|
||||
function (id) {
|
||||
window.clearTimeout(id);
|
||||
};
|
||||
|
||||
|
||||
L.Util.requestAnimFrame = function (fn, context, immediate, element) {
|
||||
|
Loading…
Reference in New Issue
Block a user