Skip to content
Snippets Groups Projects
Commit 29fe488b authored by Robert Speicher's avatar Robert Speicher
Browse files

Make the loading spinner toggle more explicit

Occasionally the loading spinner would stay visible after the tab
finished loading. This change makes the toggle explicit so that it's
always shown on `beforeSend`, and always hidden on `complete`.

Plus a bonus semi-colon eradication! :boom:
parent 680b6d88
No related branches found
No related tags found
1 merge request!1553Make the loading spinner toggle more explicit
Pipeline #
Loading
@@ -69,7 +69,7 @@ class @MergeRequestTabs
Loading
@@ -69,7 +69,7 @@ class @MergeRequestTabs
scrollToElement: (container) -> scrollToElement: (container) ->
if window.location.hash if window.location.hash
top = $(container + " " + window.location.hash).offset().top top = $(container + " " + window.location.hash).offset().top
$('body').scrollTo(top); $('body').scrollTo(top)
   
# Activate a tab based on the current action # Activate a tab based on the current action
activateTab: (action) -> activateTab: (action) ->
Loading
@@ -139,13 +139,16 @@ class @MergeRequestTabs
Loading
@@ -139,13 +139,16 @@ class @MergeRequestTabs
@diffsLoaded = true @diffsLoaded = true
@scrollToElement(".diffs") @scrollToElement(".diffs")
   
toggleLoading: -> # Show or hide the loading spinner
$('.mr-loading-status .loading').toggle() #
# status - Boolean, true to show, false to hide
toggleLoading: (status) ->
$('.mr-loading-status .loading').toggle(status)
   
_get: (options) -> _get: (options) ->
defaults = { defaults = {
beforeSend: @toggleLoading beforeSend: => @toggleLoading(true)
complete: @toggleLoading complete: => @toggleLoading(false)
dataType: 'json' dataType: 'json'
type: 'GET' type: 'GET'
} }
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