Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Gliga <otzy_007@yahoo.com>2016-05-12 13:40:24 +0300
committerAndrei Gliga <otzy_007@yahoo.com>2016-05-12 13:44:46 +0300
commit6cdce04937837de8014b1c044c91ed5b32bdc90a (patch)
tree258c830a897585098b9749ebc47a773c1521aee8 /app/helpers/application_settings_helper.rb
parent5553ad24e4fe42670ba0f4e2010819abac499e7d (diff)
Revert "Revert "no need to show the help about Github or the other authentication sources""
This reverts commit 075ace5686c63d40f7e9fa02bf37e1bd3168f7e7.
Diffstat (limited to 'app/helpers/application_settings_helper.rb')
-rw-r--r--app/helpers/application_settings_helper.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/app/helpers/application_settings_helper.rb b/app/helpers/application_settings_helper.rb
index 82056a4c977..878b1b254ce 100644
--- a/app/helpers/application_settings_helper.rb
+++ b/app/helpers/application_settings_helper.rb
@@ -71,15 +71,8 @@ module ApplicationSettingsHelper
label_tag(checkbox_name, class: css_class) do
check_box_tag(checkbox_name, source, !disabled,
autocomplete: 'off',
- aria: { describedby: help_block_id }) + Gitlab::OAuth::Provider.label_for(source)
+ 'aria-describedby' => help_block_id) + Gitlab::OAuth::Provider.label_for(source)
end
end
end
-
- def oauth_providers_with_help_links
- button_based_providers.map do |provider|
- Gitlab::OAuth::Provider.label_for(provider) + ' ' +
- link_to("(?)", help_page_path("integration", provider))
- end
- end
end