Commit 52b7e290 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents 6312ab4d 6db9cbfe
...@@ -74,11 +74,10 @@ schedule:review-build-cng: ...@@ -74,11 +74,10 @@ schedule:review-build-cng:
- .review-schedules-only - .review-schedules-only
needs: ["gitlab:assets:compile"] needs: ["gitlab:assets:compile"]
review-deploy: .review-deploy-base:
extends: .review-base extends: .review-base
allow_failure: true allow_failure: true
stage: review stage: review
needs: ["review-build-cng"]
variables: variables:
HOST_SUFFIX: "${CI_ENVIRONMENT_SLUG}" HOST_SUFFIX: "${CI_ENVIRONMENT_SLUG}"
DOMAIN: "-${CI_ENVIRONMENT_SLUG}.${REVIEW_APPS_DOMAIN}" DOMAIN: "-${CI_ENVIRONMENT_SLUG}.${REVIEW_APPS_DOMAIN}"
...@@ -108,10 +107,16 @@ review-deploy: ...@@ -108,10 +107,16 @@ review-deploy:
expire_in: 2 days expire_in: 2 days
when: always when: always
review-deploy:
extends:
- .review-deploy-base
needs: ["review-build-cng"]
schedule:review-deploy: schedule:review-deploy:
extends: extends:
- review-deploy - .review-deploy-base
- .review-schedules-only - .review-schedules-only
needs: ["schedule:review-build-cng"]
review-stop: review-stop:
extends: review-deploy extends: review-deploy
......
import $ from 'jquery'; import $ from 'jquery';
import '~/behaviors/markdown/render_gfm';
import Flash from '../../flash'; import Flash from '../../flash';
import { handleLocationHash } from '../../lib/utils/common_utils'; import { handleLocationHash } from '../../lib/utils/common_utils';
import axios from '../../lib/utils/axios_utils'; import axios from '../../lib/utils/axios_utils';
...@@ -105,7 +106,6 @@ export default class BlobViewer { ...@@ -105,7 +106,6 @@ export default class BlobViewer {
toggleCopyButtonState() { toggleCopyButtonState() {
if (!this.copySourceBtn) return; if (!this.copySourceBtn) return;
if (this.simpleViewer.getAttribute('data-loaded')) { if (this.simpleViewer.getAttribute('data-loaded')) {
this.copySourceBtn.setAttribute('title', __('Copy source to clipboard')); this.copySourceBtn.setAttribute('title', __('Copy source to clipboard'));
this.copySourceBtn.classList.remove('disabled'); this.copySourceBtn.classList.remove('disabled');
...@@ -152,7 +152,6 @@ export default class BlobViewer { ...@@ -152,7 +152,6 @@ export default class BlobViewer {
this.activeViewer = newViewer; this.activeViewer = newViewer;
this.toggleCopyButtonState(); this.toggleCopyButtonState();
BlobViewer.loadViewer(newViewer) BlobViewer.loadViewer(newViewer)
.then(viewer => { .then(viewer => {
$(viewer).renderGFM(); $(viewer).renderGFM();
......
<script> <script>
import { mapActions } from 'vuex'; import { mapActions } from 'vuex';
import $ from 'jquery'; import $ from 'jquery';
import '~/behaviors/markdown/render_gfm';
import getDiscussion from 'ee_else_ce/notes/mixins/get_discussion'; import getDiscussion from 'ee_else_ce/notes/mixins/get_discussion';
import noteEditedText from './note_edited_text.vue'; import noteEditedText from './note_edited_text.vue';
import noteAwardsList from './note_awards_list.vue'; import noteAwardsList from './note_awards_list.vue';
......
<script> <script>
import $ from 'jquery'; import $ from 'jquery';
import '~/behaviors/markdown/render_gfm';
import _ from 'underscore'; import _ from 'underscore';
import { __, sprintf } from '~/locale'; import { __, sprintf } from '~/locale';
import { stripHtml } from '~/lib/utils/text_utility'; import { stripHtml } from '~/lib/utils/text_utility';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment