ui-scroll - 无法返回到列表开头

ui-scroll - cannot come back to the beginning of the list

我只想向下滚动然后返回到列表的开头。
我知道有数以千计的示例来说明如何ui-来回滚动,但所有这些都不适用于我的解决方案。

请帮忙。
fiddle 添加 http://jsfiddle.net/4hrjeyqd/3/

 <div ui-scroll-viewport class="testStyle">
   <div ui-scroll="item in datasource" buffer-size='5' adapter="datasource.adapter">
     *one {{item}}*
   </div>
 </div>

JS:

angular.module('application', ['ui.scroll', 'ui.scroll.jqlite'])
  .factory('datasource', function() {

    var res = {
      data: [],
      adapter: {},
      get: function(index, count, success) {
        console.log('index=' + index + ', count=' + count);

        index--;

        if (index < 0) {
          count += index;
          index = 0;

          if (count < 0) count = 0;
        } else if (index + count >= this.data.length) {
          count = this.data.length - index;
        }

        var dt = this.data.slice(index, index + count);
        success(dt);
      }
    };

    for (var i = 0; i < 100; i++) {
      res.data.push('item ' + i);
    }

    return res;
  });

作为dhilt said,此错误存在于版本 1.5.0。
版本 1.4.x 和 1.5.1 正在运行。