remove un-used IDE helper module

This commit is contained in:
Phil Hughes 2018-03-20 15:00:58 +00:00
parent 82dbb903cb
commit e8b85811ab
No known key found for this signature in database
GPG Key ID: 32245528C52E0F9F
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
module IdeHelper
def ide_edit_button(project = @project, ref = @ref, path = @path, options = {})
return unless blob = readable_blob(options, path, project, ref)
common_classes = "btn js-edit-ide #{options[:extra_class]}"
edit_button_tag(blob,
common_classes,
_('Web IDE'),
ide_edit_path(project, ref, path, options),
project,
ref)
end
end