| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- 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"
- }
- }
- ,favicon: "linkFavicon"
- }
- ,klass: {
- selected: "selected"
- ,hidden: "hidden"
- ,noRoomSelected: "no-room-selected"
- ,noNetwork: "no-network"
- ,unread: "unread"
- ,unreadHi: "unreadHi"
- ,replyingTo: "replyingTo"
- ,emoji: {
- emoji: "emoji"
- ,small: "emoji-small"
- ,custom: "emoji-custom"
- }
- ,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"
- }
- ,reactions: {
- container: "slackmsg-reactions"
- ,item: "slackmsg-reaction-item"
- }
- ,style: {
- bold: "slackmsg-style-bold"
- ,code: "slackmsg-style-code"
- ,italic: "slackmsg-style-italic"
- ,strike: "slackmsg-style-strike"
- ,quote: "slackmsg-style-quote"
- }
- }
- }
- };
|