This commit is contained in:
Mirco Wittrien 2019-11-21 13:34:27 +01:00
parent a8c9a139d6
commit 3d3e64c126
2 changed files with 17 additions and 14 deletions

View File

@ -4099,13 +4099,14 @@ var BDFDB = {
switchItem: "ui-switch-item", switchItem: "ui-switch-item",
switchWrapper: "ui-switch-wrapper" switchWrapper: "ui-switch-wrapper"
}; };
DiscordClassModules.BDv2repo = { DiscordClassModules.PinDMs = {
bdButton: "bd-button", dragPreview: "dragPreview-0lM4wD",
bdCard: "bd-card", dmChannelPlaceholder: "placeholder-7bhR5s",
bdHasTooltip: "bd-hasTooltip", dmChannelPinned: "pinned-0lM4wD",
bdMaterialDesignIcon: "bd-materialDesignIcon", recentPinned: "pinned-jHvFrr",
bdTooltip: "bd-tooltip", pinnedChannelsHeaderContainer: "pinnedChannelsHeaderContainer-89Gjv4",
vTooltipOpen: "v-tooltip-open" unpinButton: "unpinButton-z3-UVO",
unpinIcon: "unpinIcon-79ZnEr"
}; };
DiscordClassModules.NotFound = { DiscordClassModules.NotFound = {
_: "", _: "",
@ -4328,7 +4329,7 @@ var BDFDB = {
DiscordClassModules.VoiceDetails = BDFDB.ModuleUtils.findByProperties("container", "customStatusContainer"); DiscordClassModules.VoiceDetails = BDFDB.ModuleUtils.findByProperties("container", "customStatusContainer");
DiscordClassModules.VoiceDetailsPing = BDFDB.ModuleUtils.findByProperties("rtcConnectionQualityBad", "rtcConnectionQualityFine"); DiscordClassModules.VoiceDetailsPing = BDFDB.ModuleUtils.findByProperties("rtcConnectionQualityBad", "rtcConnectionQualityFine");
BDFDB.DiscordClassModules = Object.assign({}, DiscordClassModules); BDFDB.DiscordClassModules = Object.assign({}, DiscordClassModules);
var DiscordClasses = { var DiscordClasses = {
_bdguild: ["BDrepo", "bdGuild"], _bdguild: ["BDrepo", "bdGuild"],
_bdguildanimatable: ["BDrepo", "bdGuildAnimatable"], _bdguildanimatable: ["BDrepo", "bdGuildAnimatable"],
@ -4339,11 +4340,13 @@ var BDFDB = {
_bdguildvideo: ["BDrepo", "bdGuildVideo"], _bdguildvideo: ["BDrepo", "bdGuildVideo"],
_bdpillselected: ["BDrepo", "bdPillSelected"], _bdpillselected: ["BDrepo", "bdPillSelected"],
_bdpillunread: ["BDrepo", "bdPillUnread"], _bdpillunread: ["BDrepo", "bdPillUnread"],
_bdv2button: ["BDv2repo", "bdButton"], _pindmsdragpreview: ["PinDMs", "dragPreview"],
_bdv2card: ["BDv2repo", "bdCard"], _pindmsdmchannelpinned: ["PinDMs", "dmChannelPinned"],
_bdv2hastooltip: ["BDv2repo", "bdHasTooltip"], _pindmsdmchannelplaceholder: ["PinDMs", "dmChannelPlaceholder"],
_bdv2materialdesignicon: ["BDv2repo", "bdMaterialDesignIcon"], _pindmspinnedchannelsheadercontainer: ["PinDMs", "pinnedChannelsHeaderContainer"],
_bdv2tooltipopen: ["BDv2repo", "vTooltipOpen"], _pindmsrecentpinned: ["PinDMs", "recentPinned"],
_pindmsunpinbutton: ["PinDMs", "unpinButton"],
_pindmsunpinicon: ["PinDMs", "unpinIcon"],
_repoauthor: ["BDrepo", "bdaAuthor"], _repoauthor: ["BDrepo", "bdaAuthor"],
_repocheckbox: ["BDrepo", "switchCheckbox"], _repocheckbox: ["BDrepo", "switchCheckbox"],
_repocheckboxchecked: ["BDrepo", "switchChecked"], _repocheckboxchecked: ["BDrepo", "switchChecked"],

File diff suppressed because one or more lines are too long