Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
948ebfeb
Commit
948ebfeb
authored
Mar 02, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provide @max_polling_steps instead of @limit_polling_interval
parent
5bd22b28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
app/assets/javascripts/notes.js.coffee
app/assets/javascripts/notes.js.coffee
+3
-2
No files found.
app/assets/javascripts/notes.js.coffee
View file @
948ebfeb
...
...
@@ -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_i
nterval
else
if
@
polling_interval
<
nthI
nterval
@
polling_interval
*=
2
@
initRefresh
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment