Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryce Johnson <bryce@gitlab.com>2016-09-19 17:38:31 +0300
committerBryce Johnson <bryce@gitlab.com>2016-10-05 12:25:03 +0300
commit6fc9118cddf102e18b00156c2892450960ee2d17 (patch)
tree4402d131500a7db87fc050819105ffa445788c2f /app/assets/javascripts/blob
parent2c5bd97dc4414b703d6eaadc0af586699c228004 (diff)
Remove super passthrough.
Diffstat (limited to 'app/assets/javascripts/blob')
-rw-r--r--app/assets/javascripts/blob/blob_ci_yaml.js.es64
-rw-r--r--app/assets/javascripts/blob/blob_license_selectors.js.es62
2 files changed, 1 insertions, 5 deletions
diff --git a/app/assets/javascripts/blob/blob_ci_yaml.js.es6 b/app/assets/javascripts/blob/blob_ci_yaml.js.es6
index bb9d0444a8c..dee06a7196f 100644
--- a/app/assets/javascripts/blob/blob_ci_yaml.js.es6
+++ b/app/assets/javascripts/blob/blob_ci_yaml.js.es6
@@ -2,10 +2,6 @@
((global) => {
class BlobCiYamlSelector extends TemplateSelector {
- constructor(...args) {
- super(...args);
- }
-
requestFile(query) {
return Api.gitlabCiYml(query.name, this.requestFileSuccess.bind(this));
}
diff --git a/app/assets/javascripts/blob/blob_license_selectors.js.es6 b/app/assets/javascripts/blob/blob_license_selectors.js.es6
index f8391919068..ebc1618816f 100644
--- a/app/assets/javascripts/blob/blob_license_selectors.js.es6
+++ b/app/assets/javascripts/blob/blob_license_selectors.js.es6
@@ -1,5 +1,5 @@
((global) => {
- class BlobLicenseSelectors() {
+ class BlobLicenseSelectors {
constructor({ $dropdowns, editor }) {
this.$dropdowns = $('.js-license-selector');
this.editor = editor;