summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/lib/utils/common_utils.js
Commit message (Collapse)AuthorAgeFilesLines
* Resolve "The reply shortcut can add any text of the page to the "comment" ↵Thomas Pathier2018-11-201-3/+21
| | | | text area"
* Added file tree to merge request diffsPhil Hughes2018-10-031-2/+10
| | | | | | | | | | | | | | | This file tree displays all the diff files in a tree like format Each file is taken and converted into a tree with folders Each folder can be toggled open & closed Clicking a file will scroll to the diff file & highlight with a glow affect Searching the tree list will search only files & return a list of the files without any folders Each file row contains an icon to show changed, new file or deleted Each row will also contain the added & removed lines count Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/14249
* circumvent browser cache on browser back navigationJohann Hubert Sonntagbauer2018-10-021-0/+11
|
* Resolve "Link to file in Changes tab of MR no longer works for all files ↵André Luís2018-09-201-21/+46
| | | | after incremental rendering improvement"
* Merge branch 'boards-querystring-backport' into 'master'Tim Zallmann2018-09-071-10/+37
|\ | | | | | | | | don't add trailing = when in urlParamsToArray function See merge request gitlab-org/gitlab-ce!21179
| * don't add trailing = when in urlParamsToArray functionSimon Knox2018-08-291-10/+37
| |
* | Adds Vuex store for the job log page🌴🌴 Filipa Lacerda - OOO back on September 17th 🌴🌴2018-09-031-1/+4
|/
* Add `roundOffFloat` helper methodKushal Pandya2018-07-241-0/+20
|
* Resolve "Copying ordered list to new comment becomes unordered"Jan Beckmann2018-06-271-1/+14
|
* Enable "prefer-destructuring" in JS filesgfyoung2018-06-251-5/+6
| | | | Partially addresses #47006.
* Changes tab VUE refactoringFelipe Artur2018-06-211-53/+86
|
* Enable no-multi-assignment in JS filesgfyoung2018-06-151-1/+4
| | | | Partially addresses #47006.
* create favicon overlay on the clientAlexis Reigel2018-06-051-4/+46
| | | | | | | | | | | | | the initial reason for this change was that graphicsmagick does not support writing to ico files. this fact lead to a chain of changes: 1. use png instead of ico (browser support is good enough) 2. render the overlays on the client using the canvas API. this way we only need to store the original favion and generate the overlay versions dynamically. this change also enables (next step) to simplify the handling of the stock favicons as well, as we don't need to generate all the versions upfront.
* fix resetFavicon so that it actually resetsAlexis Reigel2018-06-051-1/+2
|
* Convert fixTitle to _fixTitle for regenerating tooltip titlesClement Ho2018-04-191-1/+1
|
* Refactor discussions/notes codeJan Provaznik2018-04-031-0/+1
|
* require jQuery to be explicitly importedremove-jquery-globalsMike Greiling2018-03-091-2/+2
|
* Add support for query params for labels endpointKushal Pandya2018-03-021-0/+8
|
* Render MR Notes with Vue with behind a cookieFatih Acet2018-02-281-5/+16
|
* Add Tip about Push to Create project on New Project pageAndré Luís2018-02-231-0/+10
|
* Add `convertObjectPropsToCamelCase` helper methodKushal Pandya2018-02-071-0/+21
|
* remove useless ajaxPost methodPhil Hughes2018-02-011-3/+0
|
* fixed eslint :see_no_evil:Phil Hughes2018-01-311-1/+0
|
* Merge branch 'master' into ph-axios-2Phil Hughes2018-01-311-11/+6
|\
| * Use axios instead of jquery ajax for setCiStatusFaviconClement Ho2018-01-311-11/+6
| |
* | Converted common_utils to axiosPhil Hughes2018-01-311-9/+7
|/
* Switch issue_show to AxiosEric Eastwood2018-01-021-1/+1
|
* use exported methods instead of gl.utilsPhil Hughes2017-12-081-1/+2
|
* Fix issue comment submit button disabled on GFM pasteEric Eastwood2017-11-281-1/+1
| | | | | | | | | | | | | Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/40373 When copying some text from another note and paste, it goes through `copy_as_gfm` `paste` handler that calls `e.preventDefault()` which stops things. But then when inserting the text, we manually trigger an `input` event with jQuery which doesn't seem to be picked up by Vue `v-model`. Using copy/paste trick from https://stackoverflow.com/a/41046276/796832
* Improve environments performanceFilipa Lacerda2017-11-231-40/+0
|
* Stops page reload when changing tabs or pages - uses API requests insteadFilipa Lacerda2017-11-141-0/+36
|
* Export text utils as ES6 modulesFilipa Lacerda2017-11-131-1/+0
|
* Add ability to pass class name to spriteIcon helpersprite-icon-classClement Ho2017-10-121-1/+5
|
* Cleanup data-page attribute after each Karma test38871-cleanup-data-page-attribute-after-karma-testEric Eastwood2017-10-111-1/+1
| | | | Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/38871
* Fixed anchored content not being scrolled into viewPhil Hughes2017-09-291-16/+11
| | | | | | | | Correctly scrolls anchored content into view when the user loads the page. This is most obvious when the user loads a link note in a merge request & the page does not scroll down to the note. Closes #38326
* Resolve "Better SVG Usage in the Frontend"Tim Zallmann2017-09-221-0/+6
|
* Exports all the methods in the same place37220-es-modulesFilipa Lacerda2017-09-181-25/+28
|
* Fix context for jquery eventFilipa Lacerda2017-09-151-7/+5
| | | | Remove unused function
* Import modules instead of using the ones in global namespaceFilipa Lacerda2017-09-091-17/+15
| | | | | | | | | | | | | | | | | | | | | | | | Removes set favicon related methods from global scope Improves test related with favicon Removes convertPermissionToBoolean from global scope. Adds tests for convertPermissionToBoolean - were non existant Removes setParamInURL from gl.utils Removes parseIntPagination from gl.utils namespace Remove normalizeCRLFHeaders from gl.utils namespace Removes normalizeHeaders from gl.utils namespace Use gl.utils for filtered search Fix bad import Fix broken test by cleaning window.history namespace Adds changelog
* Use modules in common utilsFilipa Lacerda2017-09-091-431/+432
|
* Merge branch 'master' into issue-discussions-refactorDouwe Maan2017-08-231-4/+4
|\ | | | | | | | | # Conflicts: # package.json
| * fix unnecessarily long gl.utils.backOff test36648-fix-backoff-util-testsMike Greiling2017-08-181-4/+4
| |
* | IssueNotesRefactor: Fix eslint errors.Fatih Acet2017-08-231-1/+1
| |
* | IssueNotesRefactor: Show Cmd+Enter to comment tooltip.Fatih Acet2017-08-211-0/+7
| |
* | Merge branch 'master' into issue-discussions-refactorFilipa Lacerda2017-08-041-2/+8
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (162 commits) Since mysql is not a priority anymore, test it less Add container registry and spam logs icons Fix different Markdown styles Backport to CE for: Make new dropdown dividers full width Bump GITLAB_SHELL_VERSION and GITALY_VERSION to support unhiding refs Install yarn via apt in update guides Use long curl options Remove monkey-patched Array.prototype.first() and last() methods Openshift Getting Started 35659 Rename Pipelines tab to CI / CD in new navigation Don't bother going through an entire Banzai pipeline for empty text Add active state for pipelines settings on old nav Bump rspec to 3.6.0 Resolve "Specific Async Script Loading by using a Page Variable" Revert "Merge branch 'rs-warm-capybara-only-in-ci' into 'master'" another rubocop style fix Use mixin for new dropdown style Migrate Repository#last_commit_for_path to Gitaly Migrate blame loading to Gitaly ...
| * fixed alignment in buttonPhil Hughes2017-08-031-2/+8
| | | | | | | | correctly scroll to element with sticky height offset
* | IssueNotesRefactor: Address MR comments.Fatih Acet2017-07-211-4/+4
| |
* | IssueNotesRefactor: Implement jumping to target note.Fatih Acet2017-07-211-2/+3
|/
* Fix offset for fixed navAnnabel Dunstone Gray2017-06-231-2/+9
|
* Improve pagination when searching or filteringAlfredo Sumaran2017-06-061-2/+2
| | | | [ci skip]