resources.js 709 B

123456789101112131415161718192021222324252627282930
  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. }
  20. ,msg: {
  21. item: "slackmsg-item"
  22. ,ts: "slackmsg-ts"
  23. ,author: "slackmsg-author"
  24. ,authorname: "slackmsg-author-name"
  25. ,authorAvatar: "slackmsg-author-img"
  26. ,msg: "slackmsg-msg"
  27. }
  28. }
  29. };