From 8616b38eb353821beb306aee2533f206d98c2ff4 Mon Sep 17 00:00:00 2001 From: Pieter de Bie Date: Mon, 23 Mar 2009 23:08:27 +0000 Subject: [PATCH] WebHistoryView: Correctly show refs when reloading We assigned a function instead of the result of that function, which broke the refreshing --- html/views/history/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/views/history/history.js b/html/views/history/history.js index 258310c..f8d6f64 100644 --- a/html/views/history/history.js +++ b/html/views/history/history.js @@ -40,7 +40,7 @@ var Commit = function(obj) { } this.reloadRefs = function() { - this.refs = this.object.refs; + this.refs = this.object.refs(); } };