Browse Source

fix repository tree can't handle two loading at once (#13348)

Contributed by Vadim Pushtaev.

git-svn-id: http://svn.redmine.org/redmine/trunk@12274 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.5.0
Toshi MARUYAMA 10 years ago
parent
commit
8910b7c605
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      public/javascripts/application.js

+ 1
- 1
public/javascripts/application.js View File

@@ -413,7 +413,7 @@ function expandScmEntry(id) {
}

function scmEntryClick(id, url) {
el = $('#'+id);
var el = $('#'+id);
if (el.hasClass('open')) {
collapseScmEntry(id);
el.addClass('collapsed');

Loading…
Cancel
Save