mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Load chat messages in reasonable sized chunks
This commit is contained in:
parent
2a3ff3c523
commit
604a877f12
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ define [
|
||||||
], (App) ->
|
], (App) ->
|
||||||
App.factory "chatMessages", ($http, ide) ->
|
App.factory "chatMessages", ($http, ide) ->
|
||||||
MESSAGES_URL = "/project/#{ide.project_id}/messages"
|
MESSAGES_URL = "/project/#{ide.project_id}/messages"
|
||||||
MESSAGE_LIMIT = 3
|
MESSAGE_LIMIT = 50
|
||||||
CONNECTED_USER_URL = "/project/#{ide.project_id}/connected_users"
|
CONNECTED_USER_URL = "/project/#{ide.project_id}/connected_users"
|
||||||
|
|
||||||
chat = {
|
chat = {
|
||||||
|
|
Loading…
Reference in a new issue