Defect #13348
Repository tree can't handle two loading at once
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | SCM | |||
Target version: | 2.3.4 | |||
Resolution: | Fixed | Affected version: |
Description
On the Repository page I click [+] near the trunk
folder and while loading is processing I click [+] near branches
. After both loadings are finished I have this:
branches |-branch1 |-branch2 |-file1 `-file2 tags trunk
instead of this:
branches |-branch1 `-branch2 tags trunk |-file1 `-file2
As you can see, loading result appeared in the last chosen folder, not in the appropriate one.
Associated revisions
fix repository tree can't handle two loading at once (#13348)
Contributed by Vadim Pushtaev.
History
#1
Updated by Toshi MARUYAMA over 9 years ago
- Category set to SCM
#2
Updated by Vadim Pushtaev almost 9 years ago
- File 13348.diff
added
- Status changed from New to Resolved
Looks like we just use global variable instead of local one:
function scmEntryClick(id, url) { - el = $('#'+id); + var el = $('#'+id); if (el.hasClass('open')) { collapseScmEntry(id); el.addClass('collapsed');
Patch included.
#3
Updated by Toshi MARUYAMA almost 9 years ago
- Target version set to 2.4.0
#4
Updated by Toshi MARUYAMA almost 9 years ago
- Target version changed from 2.4.0 to 2.3.4
#5
Updated by Toshi MARUYAMA almost 9 years ago
- Status changed from Resolved to Closed
- Resolution set to Fixed