Move tree_content inline js to old_tree_content

This commit is contained in:
Luke "Jared" Bennett 2017-07-31 17:24:37 +01:00
parent 0ac012f0ad
commit 818b212875
No known key found for this signature in database
GPG key ID: 402ED51FB5D306C2
2 changed files with 6 additions and 7 deletions

View file

@ -22,3 +22,9 @@
- if can_edit_tree?
= render 'projects/blob/upload', title: _('Upload New File'), placeholder: _('Upload New File'), button_title: _('Upload file'), form_path: project_create_blob_path(@project, @id), method: :post
= render 'projects/blob/new_dir'
:javascript
// Load last commit log for each file in tree
$('#tree-slider').waitForImages(function() {
gl.utils.ajaxGet("#{escape_javascript(@logs_path)}");
});

View file

@ -2,10 +2,3 @@
= render 'shared/repo/repo', project: @project
- else
= render 'projects/tree/old_tree_content', tree: tree
:javascript
// Load last commit log for each file in tree
$('#tree-slider').waitForImages(function() {
gl.utils.ajaxGet("#{escape_javascript(@logs_path)}");
});