| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- var R = {
- id: {
- chanList: "chanList",
- context: "chatCtx",
- chatList: "chatList",
- mainSection: "chatSystemContainer",
- currentRoom: {
- title: "currentRoomTitle",
- starButton: "currentRoomStar",
- content: "chatWindow"
- },
- typing: "whoistyping",
- chanFilter: "chanSearch",
- message: {
- form: "msgForm",
- slashComplete: "slashList",
- input: "msgInput",
- replyTo: "replyToContainer",
- file: {
- bt: "attachFile",
- formContainer: "fileUploadContainer",
- fileInput: "fileUploadInput",
- form: "fileUploadForm",
- error: "fileUploadError",
- cancel: "fileUploadCancel"
- },
- emoji: "emojiButton"
- },
- settings: {
- menuButton: "ctxMenuSettings",
- wrapper: "settings",
- menu: {
- list: "settingMenuItems"
- },
- services: {
- addButton: "settings-serviceAddButton",
- addSection: "settings-serviceAddSection",
- serviceProviderList: "settings-serviceAddServiceList",
- serviceAddConfirm: "settings-serviceAddConfirm"
- }
- },
- favicon: "linkFavicon"
- },
- klass: {
- selected: "selected",
- hidden: "hidden",
- button: "button",
- buttonContainer: "button-container",
- noRoomSelected: "no-room-selected",
- noNetwork: "no-network",
- starred: "starred",
- unread: "unread",
- unreadHi: "unreadHi",
- replyingTo: "replyingTo",
- presenceAway: "away",
- typing: {
- container: "typing-container",
- dot1: "typing-dot1",
- dot2: "typing-dot2",
- dot3: "typing-dot3"
- },
- emoji: {
- emoji: "emoji",
- small: "emoji-small",
- medium: "emoji-medium",
- custom: "emoji-custom"
- },
- commands: {
- item: "chat-command-item",
- header: "chat-command-header",
- name: "chat-command-name",
- usage: "chat-command-usage",
- desc: "chat-command-desc"
- },
- emojibar: {
- container: "emojibar",
- emojis: "emojibar-emojis",
- close: "emojibar-close",
- header: "emojibar-header",
- list: "emojibar-list",
- item: "emojibar-list-item",
- search: "emojibar-search",
- overlay: "emojibar-overlay",
- detail: {
- container: "emojibar-detail",
- img: "emojibar-detail-img",
- name: "emojibar-detail-name"
- }
- },
- chatList: {
- entry: "chat-context-room",
- typeChannel: "chat-channel",
- typePrivate: "chat-group",
- typeDirect: "chat-ims",
- typing: "chat-context-typing"
- },
- msg: {
- item: "chatmsg-item",
- notice: "chatmsg-notice",
- firstUnread: "chatmsg-first-unread",
- content: "chatmsg-content",
- meMessage: "chatmsg-me_message",
- ts: "chatmsg-ts",
- author: "chatmsg-author",
- authorname: "chatmsg-author-name",
- authorAvatar: "chatmsg-author-img",
- authorAvatarWrapper: "chatmsg-author-img-wrapper",
- authorMessages: "chatmsg-author-messages",
- msg: "chatmsg-msg",
- editedStatus: "edited",
- edited: "chatmsg-edited",
- authorGroup: "chatmsg-authorGroup",
- sameTs: "chatmsg-same-ts",
- hover: {
- container: "chatmsg-hover",
- reply: "chatmsg-hover-reply",
- reaction: "chatmsg-hover-reaction",
- edit: "chatmsg-hover-edit",
- star: "chatmsg-hover-star",
- pin: "chatmsg-hover-pin",
- remove: "chatmsg-hover-remove"
- },
- replyTo: {
- close: "replyto-close"
- },
- link: "chatmsg-link",
- linkuser: "chatmsg-link-user",
- linkchan: "chatmsg-link-chan",
- attachment: {
- container: "chatmsg-attachment",
- list: "chatmsg-attachments",
- hasThumb: "has-thumb",
- pretext: "chatmsg-attachment-pretext",
- block: "chatmsg-attachment-block",
- title: "chatmsg-attachment-title",
- content: "chatmsg-attachment-content",
- text: "chatmsg-attachment-text",
- thumbImg: "chatmsg-attachment-thumb",
- img: "chatmsg-attachment-img",
- actions: "chatmsg-attachment-actions",
- actionItem: "chatmsg-attachment-actions-item",
- field: {
- container: "chatmsg-attachment-fields",
- item: "field",
- title: "field-title",
- text: "field-text",
- longField: "field-long"
- },
- footer: "chatmsg-attachment-footer",
- footerText: "chatmsg-attachment-footer-text",
- footerIcon: "chatmsg-attachment-footer-icon"
- },
- reactions: {
- container: "chatmsg-reactions",
- item: "chatmsg-reaction-item"
- },
- style: {
- bold: "chatmsg-style-bold",
- code: "chatmsg-style-code",
- longCode: "chatmsg-style-longcode",
- italic: "chatmsg-style-italic",
- strike: "chatmsg-style-strike",
- quote: "chatmsg-style-quote"
- }
- },
- dialog: {
- container: "dialog",
- overlay: "dialog-overlay",
- title: "dialog-title",
- titleLabel: "dialog-title-label",
- closeButton: "dialog-title-close",
- body: "dialog-body",
- buttonBar: "dialog-footer"
- },
- map: {
- container: "OSM-wrapper",
- canvas: "OSM-canvas",
- buttonContainer: "OSM-controls",
- buttonM: "OSM-controls-zoomMin",
- buttonP: "OSM-controls-zoomPlus"
- }
- }
- };
|