Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

PaperUI: Prevent duplicate things during digest cycle #3968

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -99,7 +99,7 @@ angular.module('PaperUI.controllers.control', []) //
})
$timeout.cancel(redraw)
redraw = $timeout(function() {
$scope.things.push.apply($scope.things, renderedThings);
$scope.things = renderedThings;
masonry()
}, 0, true)
}
Expand Down