UI 网格无限滚动要用浏览器的滚动条操作

UI Grid infinite scroll to be operated with browser's scroll bar

我在我的一个项目中使用基于 Angular.js 的框架,UI-Grid 无限滚动功能。我想使用无限滚动功能由浏览器的滚动条而不是网格的滚动条来操作。请帮忙。

You can disable browser scrollbar and set the ui-grid height to viewport height

add this css.
//main.css

body {
       overflow:hidden;
       margin:0px;
     }
.grid
    {
       height:100vh;
    }

View implementation at http://plnkr.co/edit/HXO0jQHCzfUiZzR0RiUW?p=info