var reader = new FileReader(),
file1 = new Blob(['Hola'],{type : 'text/plain'}),
file2 = new Blob(['Mundo'],{type : 'text/plain'}),
result = null;
reader.addEventListener('load',function(event){
result =...
I have a table that is populated with a ng-repeat that iterates over a list of objects. The problem is that when the value of that list changes, the ng-repeat does not refresh the data. To the list I take it from a database through...