diff --git a/js/glowingbear.js b/js/glowingbear.js index 3a4e49c..8e3ff25 100644 --- a/js/glowingbear.js +++ b/js/glowingbear.js @@ -812,13 +812,11 @@ weechat.directive('plugin', function() { $scope.plugin.visible = true; // Scroll embed content into view - var elems = $("." + $scope.plugin.$$hashKey); - if (elems.length == 1) { - var scroll = function() { - elems[0].scrollIntoViewIfNeeded(); - }; - setTimeout(scroll, 100); - } + var scroll = function() { + var embed = document.querySelector("." + $scope.plugin.$$hashKey); + embed.scrollIntoViewIfNeeded(); + }; + setTimeout(scroll, 100); }; }