scroll extensions to top

fixes #8263
This commit is contained in:
Joao Moreno
2016-07-12 18:05:08 +02:00
parent e82224cf32
commit 40602c30e1
3 changed files with 12 additions and 1 deletions

View File

@@ -220,6 +220,10 @@ export class List<T> implements IDisposable {
return this.view.getScrollTop();
}
set scrollTop(scrollTop: number) {
this.view.setScrollTop(scrollTop);
}
layout(height?: number): void {
this.view.layout(height);
}