You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
If VirtualRepeat doesn't know item size (like in untouched autocomplete), any window resizing causes new watchers registration:
VirtualRepeatController.prototype.containerUpdated=function(){// If itemSize is unknown, attempt to measure it.if(!this.itemSize){this.unwatchItemSize_=this.$scope.$watchCollection(this.repeatListExpression,angular.bind(this,function(items){if(items&&items.length){this.$$rAF(angular.bind(this,this.readItemSize_));}}));if(!this.$rootScope.$$phase)this.$scope.$digest();return;
...
VirtualRepeatController.prototype.containerUpdated=function(){// If itemSize is unknown, attempt to measure it.if(!this.itemSize){if(this.unwatchItemSize_){this.unwatchItemSize_();}this.unwatchItemSize_=this.$scope.$watchCollection(this.repeatListExpression,angular.bind(this,function(items){if(items&&items.length){this.$$rAF(angular.bind(this,this.readItemSize_));}}));if(!this.$rootScope.$$phase)this.$scope.$digest();return;
...