resources.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. }
  38. }
  39. };