summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/helpers/ide_helper.rb14
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