| 123456789101112131415161718192021222324252627282930 |
- 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"
- }
- ,msg: {
- item: "slackmsg-item"
- ,ts: "slackmsg-ts"
- ,author: "slackmsg-author"
- ,authorname: "slackmsg-author-name"
- ,authorAvatar: "slackmsg-author-img"
- ,msg: "slackmsg-msg"
- }
- }
- };
|