[Performance] Don't invoke apply from MCTSplitPane

Don't invoke apply on every  from MCTSplitPane
(this had been intended behavior, but argument was misplaced.)
This commit is contained in:
Victor Woeltjen 2015-12-03 13:27:59 -08:00
parent 4b82893c36
commit 9f0114eb39

View File

@ -204,7 +204,7 @@ define(
// And poll for position changes enforced by styles
activeInterval = $interval(function () {
getSetPosition(getSetPosition());
}, POLLING_INTERVAL, false);
}, POLLING_INTERVAL, 0, false);
// ...and stop polling when we're destroyed.
$scope.$on('$destroy', function () {