Skip to content

Commit

Permalink
release 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
100pah committed May 26, 2017
1 parent f622722 commit 4de8ebc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
18 changes: 10 additions & 8 deletions build/zrender.js
Original file line number Diff line number Diff line change
Expand Up @@ -6192,13 +6192,15 @@ define('zrender/core/event',['require','../mixin/Eventful','./env'],function(req
define('zrender/animation/requestAnimationFrame',['require'],function(require) {

return (typeof window !== 'undefined' &&
(window.requestAnimationFrame
|| window.msRequestAnimationFrame
|| window.mozRequestAnimationFrame
|| window.webkitRequestAnimationFrame))
|| function (func) {
setTimeout(func, 16);
};
((window.requestAnimationFrame && window.requestAnimationFrame.bind(window))
// https://github.com/ecomfe/zrender/issues/189#issuecomment-224919809
|| (window.msRequestAnimationFrame && window.msRequestAnimationFrame.bind(window))
|| window.mozRequestAnimationFrame
|| window.webkitRequestAnimationFrame)
)
|| function (func) {
setTimeout(func, 16);
};
});

/**
Expand Down Expand Up @@ -9524,7 +9526,7 @@ define('zrender/zrender',['require','./core/guid','./core/env','./core/util','./
/**
* @type {string}
*/
zrender.version = '3.5.0';
zrender.version = '3.5.1';

/**
* Initializing a zrender instance
Expand Down
Loading

0 comments on commit 4de8ebc

Please sign in to comment.