Prevent unnecessary doubling of js events on import pages and user calendar

This commit is contained in:
Dmitriy Zaporozhets 2015-03-25 21:45:01 -07:00
parent 12430b65d4
commit a1d09190e3
9 changed files with 13 additions and 22 deletions

View File

@ -42,6 +42,7 @@ v 7.10.0 (unreleased)
- Send EmailsOnPush email when branch or tag is created or deleted. - Send EmailsOnPush email when branch or tag is created or deleted.
- Faster merge request processing for large repository - Faster merge request processing for large repository
- Prevent doubling AJAX request with each commit visit via Turbolink - Prevent doubling AJAX request with each commit visit via Turbolink
- Prevent unnecessary doubling of js events on import pages and user calendar
v 7.9.0 v 7.9.0
- Add HipChat integration documentation (Stan Hu) - Add HipChat integration documentation (Stan Hu)

View File

@ -42,5 +42,4 @@
= button_tag "Import", class: "btn js-add-to-import" = button_tag "Import", class: "btn js-add-to-import"
:coffeescript :coffeescript
$ -> new ImporterStatus("#{jobs_import_bitbucket_path}", "#{import_bitbucket_path}")
new ImporterStatus("#{jobs_import_bitbucket_path}", "#{import_bitbucket_path}")

View File

@ -42,5 +42,4 @@
= button_tag "Import", class: "btn js-add-to-import" = button_tag "Import", class: "btn js-add-to-import"
:coffeescript :coffeescript
$ -> new ImporterStatus("#{jobs_import_github_path}", "#{import_github_path}")
new ImporterStatus("#{jobs_import_github_path}", "#{import_github_path}")

View File

@ -42,5 +42,4 @@
= button_tag "Import", class: "btn js-add-to-import" = button_tag "Import", class: "btn js-add-to-import"
:coffeescript :coffeescript
$ -> new ImporterStatus("#{jobs_import_gitlab_path}", "#{import_gitlab_path}")
new ImporterStatus("#{jobs_import_gitlab_path}", "#{import_gitlab_path}")

View File

@ -42,5 +42,4 @@
= button_tag "Import", class: "btn js-add-to-import" = button_tag "Import", class: "btn js-add-to-import"
:coffeescript :coffeescript
$ -> new ImporterStatus("#{jobs_import_gitorious_path}", "#{import_gitorious_path}")
new ImporterStatus("#{jobs_import_gitorious_path}", "#{import_gitorious_path}")

View File

@ -43,7 +43,6 @@
You're receiving notifications because you're subscribed to this thread. You're receiving notifications because you're subscribed to this thread.
:coffeescript :coffeescript
$ -> new Subscription("#{toggle_subscription_namespace_project_issue_path(@issue.project.namespace, @project, @issue)}")
new Subscription("#{toggle_subscription_namespace_project_issue_path(@issue.project.namespace, @project, @issue)}")

View File

@ -45,7 +45,4 @@
You're receiving notifications because you're subscribed to this thread. You're receiving notifications because you're subscribed to this thread.
:coffeescript :coffeescript
$ -> new Subscription("#{toggle_subscription_namespace_project_merge_request_path(@merge_request.project.namespace, @project, @merge_request)}")
new Subscription("#{toggle_subscription_namespace_project_merge_request_path(@merge_request.project.namespace, @project, @merge_request)}")

View File

@ -109,9 +109,8 @@
%p Please wait a moment, this page will automatically refresh when ready. %p Please wait a moment, this page will automatically refresh when ready.
:coffeescript :coffeescript
$ -> $('.how_to_import_link').bind 'click', (e) ->
$('.how_to_import_link').bind 'click', (e) -> e.preventDefault()
e.preventDefault() import_modal = $(this).next(".modal").show()
import_modal = $(this).next(".modal").show() $('.modal-header .close').bind 'click', ->
$('.modal-header .close').bind 'click', -> $(".modal").hide()
$(".modal").hide()

View File

@ -47,5 +47,4 @@
= render 'projects' = render 'projects'
:coffeescript :coffeescript
$ -> $(".user-calendar").load("#{user_calendar_path}")
$(".user-calendar").load("#{user_calendar_path}")