summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pms/show.js.coffee
diff options
context:
space:
mode:
authortkimia <tkimia@purdue.edu>2014-04-28 01:30:48 -0400
committertkimia <tkimia@purdue.edu>2014-04-28 01:30:48 -0400
commit85c74dac1f82dc1869a2875a9354be0b4b3361ac (patch)
tree4154815d3e5896ee6d68712f08a4dcac2b84872b /app/assets/javascripts/pms/show.js.coffee
parentb0b2a235f02b95058aa7bfbf817d5dd1d85b6730 (diff)
parent9a8d183f6896a92b84a15599323b32e73b5868b9 (diff)
Merge branch 'master' of https://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