Automatically scroll plugins into view

with-route-provider
Lorenz Hübschle-Schneider 12 years ago committed by David Cormier
parent 1354ccd470
commit e48fe29cf8
  1. 2
      directives/plugin.html
  2. 9
      js/glowingbear.js

@ -4,7 +4,7 @@
Hide {{ plugin.name }}
</button>
<div ng-bind-html="displayedContent"></div>
<div ng-bind-html="displayedContent" bo-class="plugin.$$hashKey"></div>
</div>
<div ng-hide="plugin.visible">

@ -810,6 +810,15 @@ weechat.directive('plugin', function() {
*/
$scope.displayedContent = $scope.plugin.content;
$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);
}
};
}

Loading…
Cancel
Save