do not use postmessage on oldIE since addListener is very slow there
This commit is contained in:
parent
81b6e5916a
commit
61ae350324
1 changed files with 1 additions and 1 deletions
|
|
@ -292,7 +292,7 @@ exports.addCommandKeyListener = function(el, callback) {
|
|||
}
|
||||
};
|
||||
|
||||
if (window.postMessage) {
|
||||
if (window.postMessage && !useragent.isOldIE) {
|
||||
var postMessageId = 1;
|
||||
exports.nextTick = function(callback, win) {
|
||||
win = win || window;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue