Update contributors on load (fixes #699)

This commit is contained in:
John Firebaugh
2013-02-09 16:53:29 -08:00
parent 5feb9dea5d
commit c56879b29e

View File

@@ -56,6 +56,10 @@ iD.ui.contributors = function(context) {
return function(selection) {
update(selection);
context.connection().on('load.contributors', function() {
update(selection);
});
context.map().on('move.contributors', _.debounce(function() {
update(selection);
}, 500));