summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-04-28 00:35:47 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-04-28 00:35:47 -0400
commitfbd258986b41b96a9f901d6be03bcfa9111fe13d (patch)
tree1e3a625339c2fb60adaa4b3492d604f62c235694
parent7a3fe845d568f6eab1e7a55239daed3685797c2e (diff)
addes ajax for converstaion it doesnt work right now.
-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