0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 07:13:08 -05:00

Fix blur method.

Have to blur the body, not the window.
This commit is contained in:
Neil Jenkins 2012-07-25 17:35:03 +10:00
parent b87a9c26fe
commit 0412ece8ec
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -254,7 +254,7 @@
};
var blur = function () {
win.blur();
body.blur();
};
win.addEventListener( 'focus', propagateEvent, false );