| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 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"
- ,chatList: {
- entry: "slack-context-room"
- ,typeChannel: "slack-channel"
- ,typeGroup: "slack-group"
- ,typeDirect: "slack-ims"
- }
- ,msg: {
- item: "slackmsg-item"
- ,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"
- ,style: {
- bold: "slackmsg-style-bold"
- ,code: "slackmsg-style-code"
- ,italic: "slackmsg-style-italic"
- ,strike: "slackmsg-style-strike"
- ,quote: "slackmsg-style-quote"
- }
- }
- }
- };
|