| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- var R = {
- id: {
- chanList: "chanList"
- ,chatList: "chatList"
- ,currentRoom: {
- title: "currentRoomTitle"
- ,content: "chatWindow"
- }
- ,message: {
- form: "msgForm"
- ,input: "msgInput"
- ,replyTo: "replyToContainer"
- ,file: {
- bt: "attachFile"
- ,formContainer: "fileUploadContainer"
- ,fileInput: "fileUploadInput"
- ,form: "fileUploadForm"
- ,error: "fileUploadError"
- ,cancel: "fileUploadCancel"
- }
- }
- }
- ,klass: {
- selected: "selected"
- ,hidden: "hidden"
- ,noRoomSelected: "no-room-selected"
- ,noNetwork: "no-network"
- ,unread: "unread"
- ,unreadHi: "unreadHi"
- ,replyingTo: "replyingTo"
- ,emoji: {
- small: "emoji-small"
- }
- ,chatList: {
- entry: "slack-context-room"
- ,typeChannel: "slack-channel"
- ,typeGroup: "slack-group"
- ,typeDirect: "slack-ims"
- }
- ,msg: {
- item: "slackmsg-item"
- ,meMessage: "slackmsg-me_message"
- ,ts: "slackmsg-ts"
- ,author: "slackmsg-author"
- ,authorname: "slackmsg-author-name"
- ,authorAvatar: "slackmsg-author-img"
- ,msg: "slackmsg-msg"
- ,hover: {
- container: "slackmsg-hover"
- ,reply: "slackmsg-hover-reply"
- }
- ,replyTo: {
- close: "replyto-close"
- }
- ,link: "slackmsg-link"
- ,linkuser: "slackmsg-link-user"
- ,linkchan: "slackmsg-link-chan"
- ,attachment: {
- container: "slackmsg-attachment"
- ,list: "slackmsg-attachments"
- ,pretext: "slackmsg-attachment-pretext"
- ,title: "slackmsg-attachment-title"
- ,text: "slackmsg-attachment-text"
- ,thumbImg: "slackmsg-attachment-thumb"
- ,img: "slackmsg-attachment-img"
- ,footer: "slackmsg-attachment-footer"
- ,footerText: "slackmsg-attachment-footer-text"
- ,footerIcon: "slackmsg-attachment-footer-icon"
- }
- ,style: {
- bold: "slackmsg-style-bold"
- ,code: "slackmsg-style-code"
- ,italic: "slackmsg-style-italic"
- ,strike: "slackmsg-style-strike"
- ,quote: "slackmsg-style-quote"
- }
- }
- }
- };
|