resources.js 954 B

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