summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pms/show.js.coffee
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-04-28 00:37:19 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-04-28 00:37:19 -0400
commit9a8d183f6896a92b84a15599323b32e73b5868b9 (patch)
tree9b9009dca4526b227448f940ff46c73a649d5849 /app/assets/javascripts/pms/show.js.coffee
parentaedb959b027e10290a344495b28047437c28e1aa (diff)
parentfa8ec3d1e21de1456af74d411117a1b9d5e0bbc0 (diff)
Merge branch 'master' of http://github.com/LukeShu/leaguer
Diffstat (limited to 'app/assets/javascripts/pms/show.js.coffee')
-rw-r--r--app/assets/javascripts/pms/show.js.coffee25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/assets/javascripts/pms/show.js.coffee b/app/assets/javascripts/pms/show.js.coffee
index e69de29..559513c 100644
--- a/app/assets/javascripts/pms/show.js.coffee
+++ b/app/assets/javascripts/pms/show.js.coffee
@@ -0,0 +1,25 @@
+json_url = window.location.href.replace(/\.[^/]*$/,'')+".json"
+
+page_visited_pms = false
+starting_size_pms = 0
+update = (pms) ->
+ if !page_visited_pms
+ starting_size_pms = pms.conversation.count_messages
+ page_visited_pms = true
+
+ if pms.convesation.count_messages > starting_size_pms
+ window.location.reload true
+ return
+
+ console.log("hey we got here!")
+ console.log(starting_size_pms)
+ console.log(pms.convesation.count_messages)
+
+ setTimeout (->
+ $.ajax(url: json_url).done update
+ return
+ ), 2000
+
+# Now kick off the whole process
+window.onload = ->
+ $.ajax(url: json_url).done update \ No newline at end of file