This commit is contained in:
Peter Cottle 2012-09-17 13:25:59 -07:00
parent a229bc2f41
commit b566ebf6f6
6 changed files with 10 additions and 8 deletions

View file

@ -42,7 +42,10 @@ GitEngine.prototype.init = function() {
this.commit();
// update tree
events.trigger('treeRefresh');
// TODO make async, not async
setTimeout(function() {
events.trigger('treeRefresh');
}, 100);
};
GitEngine.prototype.getDetachedHead = function() {