resources.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. var R = {
  2. id: {
  3. chanList: "chanList"
  4. ,chatList: "chatList"
  5. ,currentRoom: {
  6. title: "currentRoomTitle"
  7. ,content: "chatWindow"
  8. }
  9. ,message: {
  10. form: "msgForm"
  11. ,input: "msgInput"
  12. ,replyTo: "replyToContainer"
  13. }
  14. }
  15. ,klass: {
  16. selected: "selected"
  17. ,noRoomSelected: "no-room-selected"
  18. ,noNetwork: "no-network"
  19. ,unread: "unread"
  20. ,unreadHi: "unreadHi"
  21. ,replyingTo: "replyingTo"
  22. ,chatList: {
  23. entry: "slack-context-room"
  24. ,typeChannel: "slack-channel"
  25. ,typeGroup: "slack-group"
  26. ,typeDirect: "slack-ims"
  27. }
  28. ,msg: {
  29. item: "slackmsg-item"
  30. ,ts: "slackmsg-ts"
  31. ,author: "slackmsg-author"
  32. ,authorname: "slackmsg-author-name"
  33. ,authorAvatar: "slackmsg-author-img"
  34. ,msg: "slackmsg-msg"
  35. ,hover: {
  36. container: "slackmsg-hover"
  37. ,reply: "slackmsg-hover-reply"
  38. }
  39. ,replyTo: {
  40. close: "replyto-close"
  41. }
  42. ,link: "slackmsg-link"
  43. ,linkuser: "slackmsg-link-user"
  44. ,linkchan: "slackmsg-link-chan"
  45. }
  46. }
  47. };