Merge branch 'Ucodia-master' into develop

This commit is contained in:
Jeff Nusz 2016-08-18 15:47:39 -07:00
commit 0399ab65ff

View File

@ -729,6 +729,15 @@ common.extend(
if (init) { if (init) {
updateDisplays(this.__listening); updateDisplays(this.__listening);
} }
},
updateDisplay: function() {
common.each(this.__controllers, function(controller) {
controller.updateDisplay();
});
common.each(this.__folders, function(folder) {
folder.updateDisplay();
});
} }
} }
); );