Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
ec8a25ba
Commit
ec8a25ba
authored
Jul 12, 2016
by
Connor Shea
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace namespace-specific application.js files with namespace-bundle.js files.
parent
1d958b03
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
8 additions
and
8 deletions
+8
-8
app/assets/javascripts/graphs/graphs_bundle.js.coffee
app/assets/javascripts/graphs/graphs_bundle.js.coffee
+0
-0
app/assets/javascripts/network/network_bundle.js.coffee
app/assets/javascripts/network/network_bundle.js.coffee
+0
-0
app/assets/javascripts/profile/profile_bundle.js.coffee
app/assets/javascripts/profile/profile_bundle.js.coffee
+0
-0
app/assets/javascripts/users/users_bundle.js.coffee
app/assets/javascripts/users/users_bundle.js.coffee
+0
-0
app/views/profiles/_head.html.haml
app/views/profiles/_head.html.haml
+1
-1
app/views/projects/graphs/_head.html.haml
app/views/projects/graphs/_head.html.haml
+1
-1
app/views/projects/network/show.html.haml
app/views/projects/network/show.html.haml
+1
-1
app/views/users/show.html.haml
app/views/users/show.html.haml
+1
-1
config/application.rb
config/application.rb
+4
-4
No files found.
app/assets/javascripts/graphs/
application
.js.coffee
→
app/assets/javascripts/graphs/
graphs_bundle
.js.coffee
View file @
ec8a25ba
File moved
app/assets/javascripts/network/
application
.js.coffee
→
app/assets/javascripts/network/
network_bundle
.js.coffee
View file @
ec8a25ba
File moved
app/assets/javascripts/profile/
application
.js.coffee
→
app/assets/javascripts/profile/
profile_bundle
.js.coffee
View file @
ec8a25ba
File moved
app/assets/javascripts/users/
application
.js.coffee
→
app/assets/javascripts/users/
users_bundle
.js.coffee
View file @
ec8a25ba
File moved
app/views/profiles/_head.html.haml
View file @
ec8a25ba
-
content_for
:page_specific_javascripts
do
=
page_specific_javascript_tag
(
'lib/cropper.js'
)
=
page_specific_javascript_tag
(
'profile/
application
.js'
)
=
page_specific_javascript_tag
(
'profile/
profile_bundle
.js'
)
app/views/projects/graphs/_head.html.haml
View file @
ec8a25ba
...
...
@@ -3,7 +3,7 @@
-
content_for
:page_specific_javascripts
do
=
page_specific_javascript_tag
(
'lib/chart.js'
)
=
page_specific_javascript_tag
(
'graphs/
application
.js'
)
=
page_specific_javascript_tag
(
'graphs/
graphs_bundle
.js'
)
=
nav_link
(
action: :show
)
do
=
link_to
'Contributors'
,
namespace_project_graph_path
=
nav_link
(
action: :commits
)
do
...
...
app/views/projects/network/show.html.haml
View file @
ec8a25ba
-
page_title
"Network"
,
@ref
-
content_for
:page_specific_javascripts
do
=
page_specific_javascript_tag
(
'lib/raphael.js'
)
=
page_specific_javascript_tag
(
'network/
application
.js'
)
=
page_specific_javascript_tag
(
'network/
network_bundle
.js'
)
=
render
"projects/commits/head"
=
render
"head"
%div
{
class:
container_class
}
...
...
app/views/users/show.html.haml
View file @
ec8a25ba
...
...
@@ -2,7 +2,7 @@
-
page_description
@user
.
bio
-
content_for
:page_specific_javascripts
do
=
page_specific_javascript_tag
(
'lib/d3.js'
)
=
page_specific_javascript_tag
(
'users/
application
.js'
)
=
page_specific_javascript_tag
(
'users/
users_bundle
.js'
)
-
header_title
@user
.
name
,
user_path
(
@user
)
-
@no_container
=
true
...
...
config/application.rb
View file @
ec8a25ba
...
...
@@ -81,10 +81,10 @@ module Gitlab
config
.
assets
.
precompile
<<
"print.css"
config
.
assets
.
precompile
<<
"notify.css"
config
.
assets
.
precompile
<<
"mailers/*.css"
config
.
assets
.
precompile
<<
"graphs/
application
.js"
config
.
assets
.
precompile
<<
"users/
application
.js"
config
.
assets
.
precompile
<<
"network/
application
.js"
config
.
assets
.
precompile
<<
"profile/
application
.js"
config
.
assets
.
precompile
<<
"graphs/
graphs_bundle
.js"
config
.
assets
.
precompile
<<
"users/
users_bundle
.js"
config
.
assets
.
precompile
<<
"network/
network_bundle
.js"
config
.
assets
.
precompile
<<
"profile/
profile_bundle
.js"
config
.
assets
.
precompile
<<
"lib/utils/*.js"
config
.
assets
.
precompile
<<
"lib/*.js"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment