summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/lib
Commit message (Collapse)AuthorAgeFilesLines
* WebIDE: Fix Commit bugsTim Zallmann2018-01-191-1/+1
|
* Backport of methods and components added in EBackport of methods and ↵Filipa Lacerda2018-01-031-0/+9
| | | | components added in EEE
* Switch issue_show to AxiosEric Eastwood2018-01-021-1/+1
|
* Fix mergeUrlParams encoding query parametersEric Eastwood2018-01-021-1/+1
| | | | | | | | Before: /-/boards/1/issues.json?page=1&per=50&scope=all&utf8=✓&state=opened&milestone_title=#upcoming After: /-/boards/1/issues.json?page=1&per=50&scope=all&utf8=%E2%9C%93&state=opened&milestone_title=%23upcoming
* Add `X-Requested-With: XMLHttpRequest` header so Rails can recognize XHREric Eastwood2018-01-021-0/+2
| | | | | Backport from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/3732
* Restore missing language code in datetime_utility.jsWinnie Hellmann2017-12-211-5/+13
|
* Move dateTickFormat to separate moduleWinnie Hellmann2017-12-181-0/+39
|
* Merge branch 'master' into 38869-datetimeFilipa Lacerda2017-12-112-77/+52
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (112 commits) small change to make less conflict with EE version Add cop for use of remove_column Resolve merge conflicts with dev.gitlab.org/master after security release add index for doc/administration/operations/ Remove RubySampler#sample_objects for performance as well Bugfix: User can't change the access level of an access requester Add spec for removing issues.assignee_id updated imports Keep track of storage check timings Remove a header level in the new 'Automatic CE->EE merge' doc Improve down step of removing issues.assignee_id column Fix specs after removing assignee_id field Remove issues.assignee_id column Resolve conflicts in app/models/user.rb Fix image view mode Do not raise when downstream pipeline is created Remove the need for destroy and add a comment in the spec Use build instead of create in importer spec Simplify normalizing of paths Remove allocation tracking code from InfluxDB sampler for performance ...
| * fixed URL being undefined :face_palm:Phil Hughes2017-12-081-2/+2
| |
| * use exported methods instead of gl.utilsPhil Hughes2017-12-082-20/+6
| |
| * Moved URL utility methods into es modulesPhil Hughes2017-12-081-69/+58
| |
* | Merge branch 'master' into 38869-datetimeFilipa Lacerda2017-12-071-2/+0
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (82 commits) Docs: add EEU tier to the landing page CE backport of ProtectedBranches API changes Support uploads for groups Update pipeline create chain Prometheus metric Don't set timeago title to what was already there. Resolve "Display member role per project" The API isn't using the appropriate services for managing forks Add chevron to create dropdown on repository page Rename GKE as Kubernetes Engine Fix specs for MySQL Fix broken tests Refactor banzai to support referencing from group context Fix specs after rebase Prevent dups when using StringIO for binary reads Bump redis-rails to 5.0.2 to get redis-store security updates add note on deploying Pages to a private network Bump GITLAB_SHELL_VERSION Updates the dropdown to match the docs and remove old hack of stop event propagation Move invalid builds counter out of the transaction Add invalid builds counter metric to stage seeds class ...
| * Don't set timeago title to what was already there.bvl-dont-reset-timeago-titleBob Van Landuyt2017-12-071-2/+0
| | | | | | | | This didn't actually do anything.
* | Export date utility functions as ES6 modulesFilipa Lacerda2017-12-073-110/+115
|/
* 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
* Merge branch 'backport-add-epic-sidebar' into 'master'Fatih Acet2017-11-272-0/+23
|\ | | | | | | | | Backport of add-epic-sidebar See merge request gitlab-org/gitlab-ce!15335
| * Update text_utility.jsClement Ho2017-11-171-1/+1
| |
| * Fix potential EE conflictbackport-add-epic-sidebarClement Ho2017-11-162-10/+10
| |
| * Merge branch 'master' into 'backport-add-epic-sidebar'Clement Ho2017-11-154-2/+74
| |\ | | | | | | | | | # Conflicts: # app/assets/javascripts/lib/utils/text_utility.js
| * \ Merge branch 'master' into backport-add-epic-sidebarClement Ho2017-11-134-187/+206
| |\ \
| * | | Backport of add-epic-sidebarClement Ho2017-11-102-1/+18
| | | |
* | | | Improve environments performanceFilipa Lacerda2017-11-231-40/+0
| | | |
* | | | Use axios instead of vue resource - step 1Filipa Lacerda2017-11-202-4/+22
| |_|/ |/| |
* | | Merge branch 'fix-typo' into 'master'Annabel Dunstone Gray2017-11-141-1/+1
|\ \ \ | | | | | | | | | | | | | | | | Fix typo See merge request gitlab-org/gitlab-ce!15358
| * | | Fix typofix-typoClement Ho2017-11-131-1/+1
| | |/ | |/|
* | | Stops page reload when changing tabs or pages - uses API requests insteadFilipa Lacerda2017-11-142-2/+42
| | |
* | | Merge branch '40092-fix-cluster-size' into 'master'Tim Zallmann2017-11-141-0/+28
|\ \ \ | | | | | | | | | | | | | | | | Formats bytes to human readable number in registry table See merge request gitlab-org/gitlab-ce!15359
| * | | Formats bytes to human reabale number in registry table40092-fix-cluster-sizeFilipa Lacerda2017-11-131-0/+28
| |/ /
* | | url_utility and style backportLuke "Jared" Bennett2017-11-131-0/+4
|/ /
* | Export text utils as ES6 modulesFilipa Lacerda2017-11-134-187/+200
|/
* Add crsf token in axios calls39726-add-crsf-token-axiosFilipa Lacerda2017-11-021-0/+6
|
* Fix performance of sticky.jsPhil Hughes2017-10-231-6/+2
| | | | Closes #39332
* Fix PikadayFilipa Lacerda2017-10-181-6/+27
|
* Merge branch 'sprite-icon-class' into 'master'convert-js-modulesPhil Hughes2017-10-171-1/+5
|\ | | | | | | | | | | | | Add ability to pass class name to spriteIcon helper Closes #39079 See merge request gitlab-org/gitlab-ce!14855
| * Add ability to pass class name to spriteIcon helpersprite-icon-classClement Ho2017-10-121-1/+5
| |
* | Add create merge checkbox.Jacob Schatz2017-10-121-2/+2
|/
* 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
* Fix bad type checking to prevent 0 count badge to be shownFilipa Lacerda2017-10-101-3/+11
|
* Commenting on image diffsFelipe Artur2017-10-071-0/+5
|
* Show confirmation modal before deleting accountWinnie Hellmann2017-10-061-1/+3
|
* Merge branch 'master' into 34102-online-view-of-artifacts-feEric Eastwood2017-10-041-2/+2
|\
| * Merge branch 'translation-timeago-a-while-ago' into 'master'Douwe Maan2017-10-021-2/+2
| |\ | | | | | | | | | | | | Fix translation for 'a while' => 'in a while' See merge request gitlab-org/gitlab-ce!14433
| | * Fix translation for 'in a while'translation-timeago-a-while-agoKim "BKC" Carlbäcker2017-09-221-2/+2
| | |
* | | Add test for external HTML artifactEric Eastwood2017-10-031-1/+1
| | |
* | | Add external link FE for online artifactsEric Eastwood2017-09-291-2/+18
|/ / | | | | | | FE for https://gitlab.com/gitlab-org/gitlab-ce/issues/34102
* | 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
* | refactor tests to actually test browser behaviourPhil Hughes2017-09-251-1/+1
| |
* | removed commented out CSSPhil Hughes2017-09-251-1/+1
| |
* | Dynamically create offset for sticky barPhil Hughes2017-09-221-5/+25
| |
* | Resolve "Better SVG Usage in the Frontend"Tim Zallmann2017-09-221-0/+6
|/