Commit 3ecdd280 authored by Filipa Lacerda's avatar Filipa Lacerda

Fix conflicts for:

 - app/assets/javascripts/dispatcher.js
 - app/assets/javascripts/project_find_file.js
 - app/assets/javascripts/render_gfm.js
 - app/assets/javascripts/search.js
 - app/assets/javascripts/search_autocomplete.js
 - app/assets/stylesheets/pages/merge_requests.scss
 - spec/javascripts/search_autocomplete_spec.js
parent 1e2cacf0
...@@ -24,10 +24,7 @@ import projectAvatar from './project_avatar'; ...@@ -24,10 +24,7 @@ import projectAvatar from './project_avatar';
/* global MergeRequest */ /* global MergeRequest */
import Compare from './compare'; import Compare from './compare';
import initCompareAutocomplete from './compare_autocomplete'; import initCompareAutocomplete from './compare_autocomplete';
<<<<<<< HEAD
/* global PathLocks */ /* global PathLocks */
=======
>>>>>>> upstream/master
import ProjectFindFile from './project_find_file'; import ProjectFindFile from './project_find_file';
import ProjectNew from './project_new'; import ProjectNew from './project_new';
import projectImport from './project_import'; import projectImport from './project_import';
......
...@@ -28,12 +28,7 @@ const highlighter = function(element, text, matches) { ...@@ -28,12 +28,7 @@ const highlighter = function(element, text, matches) {
}; };
export default class ProjectFindFile { export default class ProjectFindFile {
<<<<<<< HEAD
constructor (element1, options) {
=======
constructor(element1, options) { constructor(element1, options) {
>>>>>>> upstream/master
this.element = element1; this.element = element1;
this.options = options; this.options = options;
this.goToBlob = this.goToBlob.bind(this); this.goToBlob = this.goToBlob.bind(this);
...@@ -75,11 +70,7 @@ export default class ProjectFindFile { ...@@ -75,11 +70,7 @@ export default class ProjectFindFile {
// find file // find file
} }
<<<<<<< HEAD
// files pathes load
=======
// files pathes load // files pathes load
>>>>>>> upstream/master
load(url) { load(url) {
return $.ajax({ return $.ajax({
url: url, url: url,
......
import renderMath from './render_math'; import renderMath from './render_math';
import renderMermaid from './render_mermaid'; import renderMermaid from './render_mermaid';
import syntaxHighlight from './syntax_highlight'; import syntaxHighlight from './syntax_highlight';
<<<<<<< HEAD
=======
>>>>>>> upstream/master
// Render Gitlab flavoured Markdown // Render Gitlab flavoured Markdown
// //
// Delegates to syntax highlight and render math & mermaid diagrams. // Delegates to syntax highlight and render math & mermaid diagrams.
......
...@@ -79,11 +79,7 @@ export default class Search { ...@@ -79,11 +79,7 @@ export default class Search {
.on('keyup', this.searchInput, this.searchKeyUp); .on('keyup', this.searchInput, this.searchKeyUp);
$(document) $(document)
.off('click', this.searchClear) .off('click', this.searchClear)
<<<<<<< HEAD
.on('click', this.searchClear, this.clearSearchField);
=======
.on('click', this.searchClear, this.clearSearchField.bind(this)); .on('click', this.searchClear, this.clearSearchField.bind(this));
>>>>>>> upstream/master
} }
static submitSearch() { static submitSearch() {
......
...@@ -773,7 +773,6 @@ ...@@ -773,7 +773,6 @@
font-size: 16px; font-size: 16px;
} }
} }
<<<<<<< HEAD
.mr-widget-icon { .mr-widget-icon {
font-size: 22px; font-size: 22px;
...@@ -825,5 +824,3 @@ ...@@ -825,5 +824,3 @@
} }
} }
} }
=======
>>>>>>> upstream/master
...@@ -128,11 +128,7 @@ import * as urlUtils from '~/lib/utils/url_utility'; ...@@ -128,11 +128,7 @@ import * as urlUtils from '~/lib/utils/url_utility';
window.gon.current_user_id = userId; window.gon.current_user_id = userId;
window.gon.current_username = userName; window.gon.current_username = userName;
<<<<<<< HEAD
return widget = new SearchAutocomplete;
=======
return widget = new SearchAutocomplete(); return widget = new SearchAutocomplete();
>>>>>>> upstream/master
}); });
afterEach(function() { afterEach(function() {
......
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