diff --git a/CHANGELOG b/CHANGELOG
index f9bd0940a710b7a503e5d2fc350c521e610ebb2e..d16f20266cb715a58b0e4b47b0768c15b8b00aa9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -42,6 +42,7 @@ v 7.10.0 (unreleased)
   - Send EmailsOnPush email when branch or tag is created or deleted.
   - Faster merge request processing for large repository
   - 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
   - Add HipChat integration documentation (Stan Hu)
diff --git a/app/views/import/bitbucket/status.html.haml b/app/views/import/bitbucket/status.html.haml
index 9da3c920c6236da968c41454477149b277128a84..4e49bbbc7fa1184bb16fd77049776d82eab15893 100644
--- a/app/views/import/bitbucket/status.html.haml
+++ b/app/views/import/bitbucket/status.html.haml
@@ -42,5 +42,4 @@
           = button_tag "Import", class: "btn js-add-to-import"
 
 :coffeescript
-  $ ->
-    new ImporterStatus("#{jobs_import_bitbucket_path}", "#{import_bitbucket_path}")
+  new ImporterStatus("#{jobs_import_bitbucket_path}", "#{import_bitbucket_path}")
diff --git a/app/views/import/github/status.html.haml b/app/views/import/github/status.html.haml
index 9c4d91013ec0af905d3d630d073e36eccea978ed..f0bc3e6b1ac91abca4c2510d93712920526381fd 100644
--- a/app/views/import/github/status.html.haml
+++ b/app/views/import/github/status.html.haml
@@ -42,5 +42,4 @@
           = button_tag "Import", class: "btn js-add-to-import"
 
 :coffeescript
-  $ ->
-    new ImporterStatus("#{jobs_import_github_path}", "#{import_github_path}")
+  new ImporterStatus("#{jobs_import_github_path}", "#{import_github_path}")
diff --git a/app/views/import/gitlab/status.html.haml b/app/views/import/gitlab/status.html.haml
index e809643d8d4722452974b9ea5f9142c4a7917ea8..33b0a21acf3b187e1c1d996c7fd3f57a6d5463f5 100644
--- a/app/views/import/gitlab/status.html.haml
+++ b/app/views/import/gitlab/status.html.haml
@@ -42,5 +42,4 @@
           = button_tag "Import", class: "btn js-add-to-import"
 
 :coffeescript
-  $ ->
-    new ImporterStatus("#{jobs_import_gitlab_path}", "#{import_gitlab_path}")
+  new ImporterStatus("#{jobs_import_gitlab_path}", "#{import_gitlab_path}")
diff --git a/app/views/import/gitorious/status.html.haml b/app/views/import/gitorious/status.html.haml
index 645241a6c69a0eeca5d4f2d7e7578928c17beb6b..78c5e957be0f3d1feb65952da4de5c3a9ad8c487 100644
--- a/app/views/import/gitorious/status.html.haml
+++ b/app/views/import/gitorious/status.html.haml
@@ -42,5 +42,4 @@
           = button_tag "Import", class: "btn js-add-to-import"
 
 :coffeescript
-  $ ->
-    new ImporterStatus("#{jobs_import_gitorious_path}", "#{import_gitorious_path}")
+  new ImporterStatus("#{jobs_import_gitorious_path}", "#{import_gitorious_path}")
diff --git a/app/views/projects/issues/_issue_context.html.haml b/app/views/projects/issues/_issue_context.html.haml
index 91fe0b683718972c8a6abe183d6928aba069ba7f..c3d6dc2e50b4635a61fe035e5f61513bc3ebd279 100644
--- a/app/views/projects/issues/_issue_context.html.haml
+++ b/app/views/projects/issues/_issue_context.html.haml
@@ -43,7 +43,6 @@
           You're receiving notifications because you're subscribed to this thread.
 
 :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)}")
 
 
diff --git a/app/views/projects/merge_requests/show/_context.html.haml b/app/views/projects/merge_requests/show/_context.html.haml
index 14ad89a200004145678d931c17f31188ac9ee3fc..80e5c223d6063d758e62bc614f19d98e043f82e2 100644
--- a/app/views/projects/merge_requests/show/_context.html.haml
+++ b/app/views/projects/merge_requests/show/_context.html.haml
@@ -45,7 +45,4 @@
           You're receiving notifications because you're subscribed to this thread.
 
 :coffeescript
-  $ ->
-    new Subscription("#{toggle_subscription_namespace_project_merge_request_path(@merge_request.project.namespace, @project, @merge_request)}")
-    
-      
\ No newline at end of file
+  new Subscription("#{toggle_subscription_namespace_project_merge_request_path(@merge_request.project.namespace, @project, @merge_request)}")
diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml
index 9687c8ad87c1ea9cc393e5ec17f463490d8fc0c9..42af2f322395ed737107b0aaff3c2bebe7c03b43 100644
--- a/app/views/projects/new.html.haml
+++ b/app/views/projects/new.html.haml
@@ -109,9 +109,8 @@
     %p Please wait a moment, this page will automatically refresh when ready.
 
 :coffeescript
-  $ ->
-    $('.how_to_import_link').bind 'click', (e) ->
-      e.preventDefault()
-      import_modal = $(this).next(".modal").show()
-    $('.modal-header .close').bind 'click', ->
-      $(".modal").hide()
+  $('.how_to_import_link').bind 'click', (e) ->
+    e.preventDefault()
+    import_modal = $(this).next(".modal").show()
+  $('.modal-header .close').bind 'click', ->
+    $(".modal").hide()
diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml
index 0653fb871ae870b91ee2cba6be2cd23248e93a73..5e1d65e2ed836fc1a9fa042c7906fab860beeb33 100644
--- a/app/views/users/show.html.haml
+++ b/app/views/users/show.html.haml
@@ -47,5 +47,4 @@
     = render 'projects'
 
 :coffeescript
-  $ ->
-    $(".user-calendar").load("#{user_calendar_path}")
+  $(".user-calendar").load("#{user_calendar_path}")