resources.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. }
  13. }
  14. ,klass: {
  15. selected: "selected"
  16. ,noRoomSelected: "no-room-selected"
  17. ,noNetwork: "no-network"
  18. ,unread: "unread"
  19. ,unreadHi: "unreadHi"
  20. ,chatList: {
  21. entry: "slack-context-room"
  22. ,typeChannel: "slack-channel"
  23. ,typeGroup: "slack-group"
  24. ,typeDirect: "slack-ims"
  25. }
  26. ,msg: {
  27. item: "slackmsg-item"
  28. ,ts: "slackmsg-ts"
  29. ,author: "slackmsg-author"
  30. ,authorname: "slackmsg-author-name"
  31. ,authorAvatar: "slackmsg-author-img"
  32. ,msg: "slackmsg-msg"
  33. ,hover: {
  34. container: "slackmsg-hover"
  35. ,reply: "slackmsg-hover-reply"
  36. }
  37. ,link: "slackmsg-link"
  38. ,linkuser: "slackmsg-link-user"
  39. ,linkchan: "slackmsg-link-chan"
  40. }
  41. }
  42. };