Merge pull request #187 from torhve/master

call the right scope
This commit is contained in:
David Cormier 2014-02-26 08:13:43 -05:00
commit 71a3f00479

View file

@ -1103,7 +1103,7 @@ weechat.directive('inputBar', function() {
// Alt+A -> switch to buffer with activity
if ($event.altKey && (code === 97 || code === 65)) {
$event.preventDefault();
$scope.switchToActivityBuffer();
$rootScope.switchToActivityBuffer();
return true;
}