debian-mirror-gitlab/app/views/layouts/_loading_hints.html.haml

16 lines
1.2 KiB
Text
Raw Normal View History

2021-06-08 01:23:25 +05:30
= cache_if(Feature.enabled?(:cached_loading_hints, current_user), [ActionController::Base.asset_host, user_application_theme, user_color_scheme], expires_in: 1.minute) do
2021-10-27 15:23:28 +05:30
- css_crossorigin = ActionController::Base.asset_host ? 'anonymous' : nil
2021-06-08 01:23:25 +05:30
- if ActionController::Base.asset_host
%link{ rel: 'dns-prefetch', href: ActionController::Base.asset_host }
%link{ rel: 'preconnect', href: ActionController::Base.asset_host, crossorigin: '' }
- if user_application_theme == 'gl-dark'
2021-10-27 15:23:28 +05:30
= preload_link_tag(path_to_stylesheet('application_utilities_dark'), crossorigin: css_crossorigin)
= preload_link_tag(path_to_stylesheet('application_dark'), crossorigin: css_crossorigin)
2021-06-08 01:23:25 +05:30
- else
2021-10-27 15:23:28 +05:30
= preload_link_tag(path_to_stylesheet('application_utilities'), crossorigin: css_crossorigin)
= preload_link_tag(path_to_stylesheet('application'), crossorigin: css_crossorigin)
= preload_link_tag(path_to_stylesheet("highlight/themes/#{user_color_scheme}"), crossorigin: css_crossorigin)
2021-09-30 23:02:18 +05:30
- if Gitlab::Tracking.enabled? && Gitlab::CurrentSettings.snowplow_collector_hostname
2021-06-08 01:23:25 +05:30
%link{ rel: 'preconnect', href: Gitlab::CurrentSettings.snowplow_collector_hostname, crossorigin: '' }