resources.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. ,replyTo: "replyToContainer"
  13. ,file: {
  14. bt: "attachFile"
  15. ,formContainer: "fileUploadContainer"
  16. ,fileInput: "fileUploadInput"
  17. ,form: "fileUploadForm"
  18. ,error: "fileUploadError"
  19. ,cancel: "fileUploadCancel"
  20. }
  21. }
  22. }
  23. ,klass: {
  24. selected: "selected"
  25. ,hidden: "hidden"
  26. ,noRoomSelected: "no-room-selected"
  27. ,noNetwork: "no-network"
  28. ,unread: "unread"
  29. ,unreadHi: "unreadHi"
  30. ,replyingTo: "replyingTo"
  31. ,emoji: {
  32. emoji: "emoji"
  33. ,small: "emoji-small"
  34. ,custom: "emoji-custom"
  35. }
  36. ,chatList: {
  37. entry: "slack-context-room"
  38. ,typeChannel: "slack-channel"
  39. ,typeGroup: "slack-group"
  40. ,typeDirect: "slack-ims"
  41. }
  42. ,msg: {
  43. item: "slackmsg-item"
  44. ,meMessage: "slackmsg-me_message"
  45. ,ts: "slackmsg-ts"
  46. ,author: "slackmsg-author"
  47. ,authorname: "slackmsg-author-name"
  48. ,authorAvatar: "slackmsg-author-img"
  49. ,msg: "slackmsg-msg"
  50. ,hover: {
  51. container: "slackmsg-hover"
  52. ,reply: "slackmsg-hover-reply"
  53. }
  54. ,replyTo: {
  55. close: "replyto-close"
  56. }
  57. ,link: "slackmsg-link"
  58. ,linkuser: "slackmsg-link-user"
  59. ,linkchan: "slackmsg-link-chan"
  60. ,attachment: {
  61. container: "slackmsg-attachment"
  62. ,list: "slackmsg-attachments"
  63. ,pretext: "slackmsg-attachment-pretext"
  64. ,title: "slackmsg-attachment-title"
  65. ,text: "slackmsg-attachment-text"
  66. ,thumbImg: "slackmsg-attachment-thumb"
  67. ,img: "slackmsg-attachment-img"
  68. ,footer: "slackmsg-attachment-footer"
  69. ,footerText: "slackmsg-attachment-footer-text"
  70. ,footerIcon: "slackmsg-attachment-footer-icon"
  71. }
  72. ,style: {
  73. bold: "slackmsg-style-bold"
  74. ,code: "slackmsg-style-code"
  75. ,italic: "slackmsg-style-italic"
  76. ,strike: "slackmsg-style-strike"
  77. ,quote: "slackmsg-style-quote"
  78. }
  79. }
  80. }
  81. };