WebHistoryView: Correctly show refs when reloading

We assigned a function instead of the result of that function,
which broke the refreshing
This commit is contained in:
Pieter de Bie
2009-03-23 23:08:27 +00:00
parent b48469da93
commit 8616b38eb3
+1 -1
View File
@@ -40,7 +40,7 @@ var Commit = function(obj) {
}
this.reloadRefs = function() {
this.refs = this.object.refs;
this.refs = this.object.refs();
}
};