fix $apply exception on showSidebar

This commit is contained in:
Ailin Nemui 2014-09-23 23:36:03 +02:00
parent 0b481cce3d
commit 4e2a5dbe88

View file

@ -285,7 +285,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
if (utils.isMobileUi()) {
// de-focus the input bar when opening the sidebar on mobile, so that the keyboard goes down
_.each(document.getElementsByTagName('textarea'), function(elem) {
elem.blur();
$timeout(function(){elem.blur();});
});
}
};