Skip to content
Snippets Groups Projects
Commit 40f18681 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix loading animation while browsing tree

parent e38e2ce2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,12 +11,7 @@ $ ->
# Make the entire tree-item row clickable, but not if clicking another link (like a commit message)
$("#tree-slider .tree-item").live 'click', (e) ->
$('.tree-item-file-name a', this).trigger('click') if (e.target.nodeName != "A")
# Show/Hide the loading spinner
$('#tree-slider .tree-item-file-name a, .breadcrumb a, .project-refs-form').live
"ajax:beforeSend": -> $('.tree_progress').addClass("loading")
"ajax:complete": -> $('.tree_progress').removeClass("loading")
# Maintain forward/back history while browsing the file tree
((window) ->
History = window.History
Loading
Loading
@@ -33,7 +28,12 @@ $ ->
 
History.Adapter.bind window, 'statechange', ->
state = History.getState()
window.ajaxGet(state.url)
$.ajax({
url: state.url,
dataType: 'script',
beforeSend: -> $('.tree_progress').addClass("loading"),
complete: -> $('.tree_progress').removeClass("loading")
})
)(window)
 
# See if there are lines selected
Loading
Loading
Loading
Loading
@@ -11,9 +11,6 @@
- else
= link_to title, '#'
 
.clear
%div.tree_progress
%div#tree-content-holder.tree-content-holder
- if tree.is_blob?
= render "tree/blob", blob: tree
Loading
Loading
@@ -40,6 +37,8 @@
- if tree.readme
= render "tree/readme", readme: tree.readme
 
%div.tree_progress
- unless tree.is_blob?
:javascript
// Load last commit log for each file in tree
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment