resources.js 620 B

1234567891011121314151617181920212223242526
  1. var R = {
  2. id: {
  3. chanList: "chanList"
  4. ,chatList: "chatList"
  5. ,currentRoom: {
  6. title: "currentRoomTitle"
  7. ,content: "chatWindow"
  8. }
  9. }
  10. ,klass: {
  11. selected: "selected"
  12. ,noRoomSelected: "no-room-selected"
  13. ,chatList: {
  14. entry: "slack-context-room"
  15. }
  16. ,msg: {
  17. item: "slackmsg-item"
  18. ,ts: "slackmsg-ts"
  19. ,author: "slackmsg-author"
  20. ,authorname: "slackmsg-author-name"
  21. ,authorAvatar: "slackmsg-author-img"
  22. ,msg: "slackmsg-msg"
  23. }
  24. }
  25. };