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
AgeCommit message (Collapse)Author
2022-06-20Add latest changes from gitlab-org/gitlab@15-1-stable-eev15.1.0-rc42GitLab Bot
2021-08-19Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42GitLab Bot
2021-07-20Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot
2021-02-18Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot
2021-01-20Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher
2020-12-17Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-03-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-06-13Disable unnecessary ESLint i18n offencesBrandon Labuschagne
Unnecessary offences include false positives as well as flagged errors which have follow up issues in order to be addressed. Not all issues have been addressed before this being submitted in the spirit of results and iteration.
2019-06-04Comply with `no-implicit-coercion` rule (CE)Nathan Friend
This commit is the result of running `yarn eslint --fix` after enabling the `no-implicit-coercion` ESLint rule. This rule has been added to our ESLint config here: https://gitlab.com/gitlab-org/gitlab-eslint-config/merge_requests/14
2019-05-31Fix search dropdown not closing on blur if emptyLuke Bennett
2019-05-22Fix loading.. dropdown at search fieldPavel Chausov
Closes #61313
2019-05-21I18N JS files starting with sBrandon Labuschagne
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. This commit only targets Vanilla JS files. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
2018-11-13Fix testsHeinrich Lee Yu
2018-10-31Prettify remaining files with differences in CE and EEMike Greiling
2018-10-29Fix search "all in GitLab" not working with relative URLsStan Hu
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/53259
2018-10-09Resolve "Harmonize prettier and eslint configs"Mike Greiling
2018-09-14Move search autocomplete from dispatcher to main.jsMike Greiling
2018-08-07Resolve "Frontend for clarifying the usefulness of the search bar"Dennis Tang
2018-08-02Resolve "Top nav search bar produces console error when unauthenticated"Dennis Tang
2018-06-27Resolve "Search dropdown hides & shows when typing"Clement Ho
2018-06-20remove all unused eslint-disable rulesLukas Eipert
2018-06-15Enable no-restricted-globals in JS filesgfyoung
2018-04-03Check if at least one filter is set on dashboardJan Provaznik
When listing issues and merge requests on dasboard page, make sure that at least one filter is enabled. User's id is used in search autocomplete widget instead of username, which allows presetting user in filter dropdowns. Related to #43246
2018-03-10require jQuery to be explicitly importedMike Greiling
2018-02-21Rest of Dispatcher RefactorJacob Schatz
2018-02-21Update to jQuery 3.Jacob Schatz
2018-02-06Converted search_autocomplete.js to use axiosPhil Hughes
2017-12-13Export old code into es6 modulesFilipa Lacerda
2017-12-06Updates the dropdown to match the docs and remove old hack of stop event ↵Filipa Lacerda
propagation
2017-12-05Revert to adding open class to dropdownsAnnabel Dunstone Gray
2017-12-05Close all open dropdowns when search input is clickedAnnabel Dunstone Gray
2017-11-06Fixes 404 error to `Issues assigned to me` and `Issues I've created` when ↵Jacopo
issues are disabled The dropdown options `Issues assigned to me` and `Issues I've created` in project search are now hidden when issues are disabled on the project.
2017-09-29FIxed the clearing icon + jumping of fluid nav barTim Zallmann
2017-09-09Use modules in common utilsFilipa Lacerda
2017-09-06Remove focus styles from dropdown empty linkEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/37023
2017-03-05Remove .es6 from file extensions (!9241)winniehell
2016-10-05Refactor SearchAutocomplete to ES6 class syntax.Bryce Johnson
2016-09-27Merge branch 'cs-inline-js-search' into 'master' Fatih Acet
Remove inline JavaScript for Search autocomplete ## What does this MR do? Remove inline JavaScript from the search partial for Search autocomplete. ## Are there points in the code the reviewer needs to double check? That this doesn't break anything (it didn't when I tested it!) ## Why was this MR needed? Inline scripts are bad, this removes a few of them. ## What are the relevant issue numbers? #18231 and #19866 ## Does this MR meet the acceptance criteria? - Tests - [ ] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5284