diff options
-rw-r--r-- | CHANGELOG | 5 | ||||
-rw-r--r-- | app/assets/javascripts/application.js.coffee | 8 |
2 files changed, 7 insertions, 6 deletions
@@ -7,6 +7,7 @@ v7.13.1 - Fix invalid link to doc.gitlab.com v7.13.0 + - Fix inline edit runner-description - Allow to specify image and services in yml that can be used with docker - Fix: No runner notification can see managers only - Ability to cancel all builds in commit at once @@ -48,7 +49,7 @@ v7.12.0 - Using .gitlab-ci.yml file instead of jobs - Link to the runner from the build page for admin user - Ability to set secret variables for runner - - Dont retry build when push same commit in same ref twice + - Dont retry build when push same commit in same ref twice - Admin area: show amount of runners with last contact less than a minute ago - Fix re-adding project with the same name but different gitlab_id - Implementation of Lint (.gitlab-ci.yml validation tool) @@ -92,7 +93,7 @@ v7.10.0 - Runners sorting in admin area (by id) - Remove protected_attributes gem - Skip commit creation if there is no appropriate job - + v7.9.3 - Contains no changes - Developers can cancel and retry jobs diff --git a/app/assets/javascripts/application.js.coffee b/app/assets/javascripts/application.js.coffee index 8645c78..933ede6 100644 --- a/app/assets/javascripts/application.js.coffee +++ b/app/assets/javascripts/application.js.coffee @@ -28,17 +28,17 @@ $(document).on 'click', '.edit-runner-link', (event) -> event.preventDefault() descr = $(this).closest('.runner-description').first() - descr.hide() + descr.addClass('hide') form = descr.next('.runner-description-form') descrInput = form.find('input.description') originalValue = descrInput.val() - form.show() + form.removeClass('hide') form.find('.cancel').on 'click', (event) -> event.preventDefault() - form.hide() + form.addClass('hide') descrInput.val(originalValue) - descr.show() + descr.removeClass('hide') $(document).on 'click', '.assign-all-runner', -> $(this).replaceWith('<i class="icon-refresh icon-spin"></i> Assign in progress..') |