diff --git a/CHANGELOG b/CHANGELOG
index 3bcd8645a900306cb5fc2480e2dfbedec3bc47bc..15942e396d7d46184df8ce1f65bacf7852d24157 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -8,6 +8,7 @@ v 7.4.0
   - Sort search autocomplete projects by stars count so most popular go first
   - Do not delete tmp/repositories itself during clean-up, only its contents
   - Support for backup uploads to remote storage
+  - Prevent notes polling when there are not notes
 
 v 7.3.1
   - Fix ref parsing in Gitlab::GitAccess
diff --git a/app/assets/javascripts/notes.js.coffee b/app/assets/javascripts/notes.js.coffee
index 597d6d26b690596b2373a94a6663ea48d9e12ba7..ba8d7a9a2f5189cfd25292ec7ea4f04f0fdb3007 100644
--- a/app/assets/javascripts/notes.js.coffee
+++ b/app/assets/javascripts/notes.js.coffee
@@ -6,6 +6,7 @@ class Notes
     @notes_url = gon.relative_url_root + @notes_url if gon.relative_url_root?
     @note_ids = note_ids
     @last_fetched_at = last_fetched_at
+    @noteable_url = document.URL
     @initRefresh()
     @setupMainTargetNoteForm()
     @cleanBinding()
@@ -95,7 +96,8 @@ class Notes
     , 15000
 
   refresh: ->
-    @getContent() unless document.hidden
+    unless document.hidden or (@noteable_url != document.URL)
+      @getContent()
 
   getContent: ->
     $.ajax