Skip to content

Commit 537a885

Browse files
committed
v1.7.5 release notes
1 parent e7d9227 commit 537a885

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,8 @@ Adapter object implements the following properties:
249249
* `topVisible`/`bottomVisible` - a read only reference to the item currently in the topmost/bottommost visible position.
250250
* `topVisibleElement`/`bottomVisibleElement` - a read only reference to the DOM element currently in the topmost/bottommost visible position.
251251
* `topVisibleScope`/`bottomVisibleScope` - a read only reference to the scope created for the item currently in the topmost/bottommost visible position.
252+
* `bufferLength` - a number of items currently in the ui-scroll buffer; equal to a number of DOM elements that are present in visible and invisible parts of the ui-scroll viewport.
253+
* `bufferFirst`/`bufferLast` - a read only reference to the first/last item currently in the ui-scroll buffer.
252254
* `disabled` - setting `disabled` to `true` disables scroller's scroll/resize events handlers. This can be useful if you have multiple scrollers within the same scrollViewport and you want to prevent some of them from responding to the events.
253255

254256
Adapter object implements the following methods
@@ -475,6 +477,10 @@ Pull Rerquest should include source code (./scr) changes, may include tests (./t
475477

476478
## Change log
477479

480+
### v1.7.5
481+
* Added bufferFirst, bufferLast, bufferLength read-only properties to the Adapter.
482+
* Fixed reload unsubscribe issue [226](https://github.com/angular-ui/ui-scroll/issues/226).
483+
478484
### v1.7.4
479485
* Fixed jqLite/jQuery confrontation.
480486

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-ui-scroll",
33
"description": "AngularJS infinite scrolling module",
4-
"version": "1.7.4",
4+
"version": "1.7.5",
55
"main": "./dist/ui-scroll.js",
66
"homepage": "https://github.com/angular-ui/ui-scroll.git",
77
"license": "MIT",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-ui-scroll",
33
"description": "AngularJS infinite scrolling module",
4-
"version": "1.7.4",
4+
"version": "1.7.5",
55
"src": "./src/",
66
"public": "./dist/",
77
"main": "./dist/ui-scroll.js",

0 commit comments

Comments
 (0)