Move Miscellaneous Features into its own directory.
This commit is contained in:
parent
678b887185
commit
01d882989b
|
@ -1,14 +1,14 @@
|
||||||
export * from "./anonymize-usernames.js";
|
export * from "./anonymize-usernames.js";
|
||||||
export * from "./autocomplete.js";
|
export * from "./autocomplete.js";
|
||||||
export * from "./back-to-top.js";
|
export * from "./back-to-top.js";
|
||||||
export * from "./comment-anchor-fix.js";
|
|
||||||
export * from "./group-list-subscribe-button.js";
|
|
||||||
export * from "./hide-topics.js";
|
export * from "./hide-topics.js";
|
||||||
export * from "./hide-votes.js";
|
export * from "./hide-votes.js";
|
||||||
export * from "./jump-to-new-comment.js";
|
export * from "./jump-to-new-comment.js";
|
||||||
export * from "./markdown-toolbar.js";
|
export * from "./markdown-toolbar.js";
|
||||||
|
export * from "./miscellaneous/comment-anchor-fix.js";
|
||||||
|
export * from "./miscellaneous/group-list-subscribe-button.js";
|
||||||
|
export * from "./miscellaneous/topic-info-ignore.js";
|
||||||
|
export * from "./miscellaneous/unignore-all-button.js";
|
||||||
export * from "./themed-logo.js";
|
export * from "./themed-logo.js";
|
||||||
export * from "./topic-info-ignore.js";
|
|
||||||
export * from "./unignore-all-button.js";
|
|
||||||
export * from "./user-labels.js";
|
export * from "./user-labels.js";
|
||||||
export * from "./username-colors.js";
|
export * from "./username-colors.js";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {log, pluralize} from "../../utilities/exports.js";
|
import {log, pluralize} from "../../../utilities/exports.js";
|
||||||
|
|
||||||
export function runCommentAnchorFixFeature(): void {
|
export function runCommentAnchorFixFeature(): void {
|
||||||
const count = commentAnchorFix();
|
const count = commentAnchorFix();
|
|
@ -4,7 +4,7 @@ import {
|
||||||
makeIntercoolerRequest,
|
makeIntercoolerRequest,
|
||||||
pluralize,
|
pluralize,
|
||||||
querySelectorAll,
|
querySelectorAll,
|
||||||
} from "../../utilities/exports.js";
|
} from "../../../utilities/exports.js";
|
||||||
|
|
||||||
export function runGroupListSubscribeButtonFeature(): void {
|
export function runGroupListSubscribeButtonFeature(): void {
|
||||||
const count = addSubscribeButtonsToGroupList();
|
const count = addSubscribeButtonsToGroupList();
|
|
@ -1,4 +1,4 @@
|
||||||
import {log, pluralize, querySelectorAll} from "../../utilities/exports.js";
|
import {log, pluralize, querySelectorAll} from "../../../utilities/exports.js";
|
||||||
|
|
||||||
export function runTopicInfoIgnore(): void {
|
export function runTopicInfoIgnore(): void {
|
||||||
const count = moveIgnoreButtons();
|
const count = moveIgnoreButtons();
|
|
@ -1,5 +1,5 @@
|
||||||
import {Component, render} from "preact";
|
import {Component, render} from "preact";
|
||||||
import {log, querySelectorAll, sleep} from "../../utilities/exports.js";
|
import {log, querySelectorAll, sleep} from "../../../utilities/exports.js";
|
||||||
|
|
||||||
export function runUnignoreAllButtonFeature(): void {
|
export function runUnignoreAllButtonFeature(): void {
|
||||||
if (addUnignoreAllButton()) {
|
if (addUnignoreAllButton()) {
|
Loading…
Reference in New Issue