Actions
Defect #13348
closedRepository tree can't handle two loading at once
Start date:
Due date:
% Done:
0%
Estimated time:
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.
Files
Updated by Vadim Pushtaev about 11 years ago
- File 13348.diff 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.
Updated by Toshi MARUYAMA about 11 years ago
- Target version changed from 2.4.0 to 2.3.4
Actions