diff options
author | Phil Hughes <me@iamphill.com> | 2018-03-20 15:00:58 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-03-20 15:00:58 +0000 |
commit | e8b85811ab91aea8b2eed325cfdaac16b347b302 (patch) | |
tree | e6f9f5858947c41e9d0da20d576556db24208c49 /app/helpers | |
parent | 82dbb903cb697a628ccdf75860b34c8d87baa7e3 (diff) | |
download | gitlab-ce-e8b85811ab91aea8b2eed325cfdaac16b347b302.tar.gz |
remove un-used IDE helper module
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/ide_helper.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/app/helpers/ide_helper.rb b/app/helpers/ide_helper.rb deleted file mode 100644 index f090ae71269..00000000000 --- a/app/helpers/ide_helper.rb +++ /dev/null @@ -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 |