| 1234567891011121314151617181920212223242526272829303132333435363738 |
- var R = {
- id: {
- chanList: "chanList"
- ,chatList: "chatList"
- ,currentRoom: {
- title: "currentRoomTitle"
- ,content: "chatWindow"
- }
- ,message: {
- form: "msgForm"
- ,input: "msgInput"
- }
- }
- ,klass: {
- selected: "selected"
- ,noRoomSelected: "no-room-selected"
- ,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"
- }
- }
- }
- };
|