resources.js 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. ,unread: "unread"
  18. ,unreadHi: "unreadHi"
  19. ,chatList: {
  20. entry: "slack-context-room"
  21. ,typeChannel: "slack-channel"
  22. ,typeGroup: "slack-group"
  23. ,typeDirect: "slack-ims"
  24. }
  25. ,msg: {
  26. item: "slackmsg-item"
  27. ,ts: "slackmsg-ts"
  28. ,author: "slackmsg-author"
  29. ,authorname: "slackmsg-author-name"
  30. ,authorAvatar: "slackmsg-author-img"
  31. ,msg: "slackmsg-msg"
  32. ,hover: {
  33. container: "slackmsg-hover"
  34. ,reply: "slackmsg-hover-reply"
  35. }
  36. }
  37. }
  38. };