summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes.js.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/notes.js.coffee')
-rw-r--r--app/assets/javascripts/notes.js.coffee5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/assets/javascripts/notes.js.coffee b/app/assets/javascripts/notes.js.coffee
index 88c9046a85c..1211614ae64 100644
--- a/app/assets/javascripts/notes.js.coffee
+++ b/app/assets/javascripts/notes.js.coffee
@@ -17,7 +17,7 @@ class @Notes
@noteable_url = document.URL
@notesCountBadge ||= $(".issuable-details").find(".notes-tab .badge")
@base_polling_interval = 15000
- @limit_polling_interval = 120000
+ @max_polling_steps = 5
@cleanBinding()
@addBinding()
@@ -127,9 +127,10 @@ class @Notes
if there aren't new notes coming from the server
###
setPollingInterval: (shouldReset = true) ->
+ nthInterval = @base_polling_interval * Math.pow(2, @max_polling_steps - 1)
if shouldReset
@polling_interval = @base_polling_interval
- else if @polling_interval < @limit_polling_interval
+ else if @polling_interval < nthInterval
@polling_interval *= 2
@initRefresh()