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

update.js.erb « preferences « profiles « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4433cab7782f5ea3a0be4e3f386da29562cd675c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Remove body class for any previous theme, re-add current one
$('body').removeClass('<%= Gitlab::Themes.body_classes %>')
$('body').addClass('<%= user_application_theme %>')

// Toggle container-fluid class
if ('<%= current_user.layout %>' === 'fluid') {
  $('.content-wrapper').find('.container-fluid').removeClass('container-limited')
} else {
  $('.content-wrapper').find('.container-fluid').addClass('container-limited')
}

// Re-enable the "Save" button
$('input[type=submit]').enable()

// Show the notice flash message
new Flash('<%= flash.discard(:notice) %>', 'notice')