diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-07-18 17:27:01 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-07-18 17:27:01 -0500 |
commit | f2c0ab398eb71ba9549ebd6d70b7fa7c8707b380 (patch) | |
tree | d4676cd83df55f28e521fd790c4ab3b1d1561bae /app/views/users | |
parent | 339baf8f5d7716baa1a6924c94f1896cf8f6805f (diff) | |
download | gitlab-ce-f2c0ab398eb71ba9549ebd6d70b7fa7c8707b380.tar.gz |
refactor users bundle, remove inline javascript, and transform into an async chunk
Diffstat (limited to 'app/views/users')
-rw-r--r-- | app/views/users/show.html.haml | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml index 863fec842f5..7107c1b2d81 100644 --- a/app/views/users/show.html.haml +++ b/app/views/users/show.html.haml @@ -1,8 +1,5 @@ - page_title @user.name - page_description @user.bio -- content_for :page_specific_javascripts do - = page_specific_javascript_bundle_tag('common_d3') - = page_specific_javascript_bundle_tag('users') - header_title @user.name, user_path(@user) - @no_container = true @@ -129,10 +126,3 @@ .loading-status = spinner - -:javascript - var userProfile; - - userProfile = new gl.User({ - action: "#{controller.action_name}" - }); |