This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/app/components
Martin Brennan f6528afa01
DEV: Add uploadHandler support to composer-upload-uppy mixin (#14692)
This commit adds uploadHandler support to composer uploads using
uppy. The only things we have that are using this are discourse-brightcove and
discourse-video, which both pop modal windows to handle the file upload and
completely leave out all the composer-type flows. This implementation simply
follows the existing one, where if a single file is uploaded and there
is a matching upload handler we take control away from uppy and hand
it off to the upload handler.

Trying to get this kind of thing working within uppy would require a few
changes because they have no way to restrict uploaders to certain file types
and with the way their uploaders are run it doesn't look like it would be easy
to add this either, so I don't think this is worth the work unless at some
point in the future we plan to have more upload handler integrations.

I also fixed an issue with `cleanUpComposerUploadHandler` which is used
in tests to reset the state of `uploadHandlers` in the composer. This
was doing `uploadHandlers = []` to clear that array, but that creates
a brand new array so anything else referencing the original array will
lose that reference. Better to set `uploadHandlers.length = 0` to
clear it. This was breaking the tests I added to see if upload handlers
were working.
2021-10-26 11:22:33 +10:00
..
about-page-users.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
activation-controls.js UX: respect email_editable site setting in user activation page. (#11835) 2021-01-25 22:19:26 +05:30
add-category-tag-classes.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
add-topic-status-classes.js UX: add CSS classes on body tag based on topic statuses. (#12729) 2021-05-04 11:07:54 +05:30
auth-token-dropdown.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
avatar-flair.js FEATURE: Let users select flair (#13587) 2021-07-08 10:46:21 +03:00
avatar-uploader.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
backup-codes.js DEV: prettier 2.2.1 (#11862) 2021-01-27 12:39:20 +01:00
backup-uploader.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
badge-button.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
badge-card.js FEATURE: lets users favorite 2 badges to show on user-card (#13151) 2021-06-01 10:33:40 +02:00
badge-selector.js DEV: Don't use the Ember global (#13535) 2021-06-29 19:54:18 +02:00
badge-title.js REFACTOR: badge-title component (#14162) 2021-08-26 15:19:09 +02:00
basic-topic-list.js DEV: prettier 2.2.1 (#11862) 2021-01-27 12:39:20 +01:00
bookmark-actions-dropdown.js FEATURE: Bookmark pinning (#12431) 2021-03-22 09:50:22 +10:00
bookmark-list.js DEV: Add new bookmarks:changed app event (#14674) 2021-10-22 09:38:02 +10:00
bookmark.js DEV: Add new bookmarks:changed app event (#14674) 2021-10-22 09:38:02 +10:00
bread-crumbs.js Add category breadcrumbs to edit category page (#13126) 2021-05-25 13:40:11 -05:00
bulk-select-all.js FEATURE: Implement bulk operations for PMs (#12286) 2021-03-10 14:49:38 +02:00
bulk-select-button.js UX: Better placement for bulk select actions button (#14419) 2021-09-23 10:50:10 -04:00
categories-and-latest-topics.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
categories-and-top-topics.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
categories-boxes-topic.js UX: Add data-topic-id to featured topic items (#14031) 2021-08-12 14:32:33 -05:00
categories-boxes-with-topics.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
categories-boxes.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
categories-only.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
categories-topic-list.js DEV: Add the missing app subdirectory (#9499) 2020-04-23 10:07:54 -03:00
category-list-item.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
category-permission-row.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
category-read-only-banner.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
category-title-before.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
category-title-link.js DEV: Correct spelling mistakes in comments 2021-05-21 13:37:17 +10:00
category-unread.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
cdn-img.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
choose-message.js Revert "Revert "DEV: Wrap Ember.run.debounce. (#11352)"" (#11509) 2020-12-18 10:18:52 -03:00
choose-topic.js FIX: Discard old search results if search term changes when moving posts to a different topic (#14117) 2021-08-23 21:03:52 +03:00
color-picker-choice.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
color-picker.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
composer-action-title.js DEV: Plugin API for customizing text in the composer conditionally 2021-10-08 13:58:18 -04:00
composer-body.js REFACTOR: move composer min-height to CSS (#14378) 2021-09-20 12:21:24 -04:00
composer-editor-uppy.js DEV: make composer-upload-uppy more flexible 2021-08-27 11:56:46 -05:00
composer-editor.js DEV: Add uploadHandler support to composer-upload-uppy mixin (#14692) 2021-10-26 11:22:33 +10:00
composer-message.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
composer-messages.js UX: Update "get a room" composer message (#14104) 2021-08-23 18:34:23 -04:00
composer-save-button.js UX: More consistent shortcut labels for macOS (#14538) 2021-10-06 16:20:43 -04:00
composer-title.js FIX: title when YouTube is pasted as the title to composer (#12565) 2021-04-01 10:16:14 +11:00
composer-toggles.js FIX: Hide full screen toggle button when textarea is disabled (#14638) 2021-10-18 16:00:22 -04:00
composer-user-selector.js DEV: select-kit third major update with focus on accessibility (#13303) 2021-08-23 10:44:19 +02:00
conditional-loading-section.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
conditional-loading-spinner.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
connector-container.js DEV: Add the missing app subdirectory (#9499) 2020-04-23 10:07:54 -03:00
cook-text.js DEV: enforces eslint’s curly rule to the codebase (#10720) 2020-09-22 16:28:28 +02:00
copy-button.js UX: Add success state to copy button (#13691) 2021-07-12 10:47:24 +10:00
count-i18n.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
create-account.js DEV: Use key over the deprecated keyCode (#13795) 2021-08-09 11:41:36 +02:00
create-invite-uploader.js FEATURE: Initial implementation of direct S3 uploads with uppy and stubs (#13787) 2021-07-28 08:42:25 +10:00
create-topic-button.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
create-topics-notice.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
custom-html.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
d-button.js A11Y: do not default to label for aria-label (#14258) 2021-09-07 18:24:39 +02:00
d-document.js DEV: Plugin API to add to document title count (#14449) 2021-09-27 13:18:49 -05:00
d-editor.js DEV: removes jquery usage from linkSeenMentions codepath (#14695) 2021-10-25 10:24:37 +02:00
d-modal-body.js A11Y: Improve create account modal for screen readers (#14234) 2021-09-03 13:04:24 +10:00
d-modal-cancel.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
d-modal.js A11Y: Improve create account modal for screen readers (#14234) 2021-09-03 13:04:24 +10:00
d-navigation-item.js A11Y: adds support for aria-current through d-navigation-item (#12079) 2021-02-15 15:34:25 +01:00
d-navigation.js FIX: Nav items not recomputing on query param change (#12350) 2021-03-11 11:50:05 +10:00
d-section.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
d-textarea.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
date-input.js UX: uses native date picker when possible (eg: not safari) (#12668) 2021-04-22 10:34:23 +02:00
date-picker-future.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
date-picker-past.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
date-picker.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
date-time-input-range.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
date-time-input.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
desktop-notification-config.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
directory-item.js FEATURE: Add user custom fields to user directory (#13238) 2021-06-07 12:34:01 -05:00
directory-table.js FIX: User directory - correct variable names (#13798) 2021-07-20 09:58:54 -05:00
disabled-icon.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
discourse-banner.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
discourse-linked-text.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
discourse-root.js DEV: Add top level <div> when using Ember CLI (#12878) 2021-04-29 14:13:19 -04:00
discourse-tag-bound.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
discourse-topic.js UX: add CSS classes on body tag based on topic statuses. (#12729) 2021-05-04 11:07:54 +05:30
discovery-categories.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
discovery-topics-list.js DEV: Topic tracking state improvements (#13218) 2021-06-02 09:06:29 +10:00
edit-category-general.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
edit-category-images.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
edit-category-panel.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
edit-category-security.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
edit-category-settings.js FEATURE: Per-category default slow mode duration for topics. 2021-07-21 12:32:07 +08:00
edit-category-tab.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
edit-category-tags.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
edit-category-topic-template.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
edit-topic-timer-form.js DEV: uses forked Mousetrap to avoid leaking listeners (#14198) 2021-09-08 14:48:13 +02:00
email-dropdown.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
emoji-picker.js DEV: Remove IntersectionObserver polyfill (#13445) 2021-06-22 09:30:44 -04:00
emoji-uploader.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
expand-post.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
expanding-text-area.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
featured-topic.js UX: Add data-topic-id to featured topic items (#14031) 2021-08-12 14:32:33 -05:00
flag-action-type.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
flag-selection.js FEATURE: Admins can flag posts so they can review them later. (#12311) 2021-03-11 08:21:24 -03:00
flat-button.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
footer-message.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
footer-nav.js FIX: add body class and remove jQuery usage in footer-nav component (#13162) 2021-05-26 13:03:34 -04:00
future-date-input.js DEV: select-kit third major update with focus on accessibility (#13303) 2021-08-23 10:44:19 +02:00
generated-invite-link.js UX: update labels to indicate that invite link will be generated (not copied) (#11077) 2020-10-31 07:10:13 +05:30
global-notice.js DEV: Remove HTML setting type and sanitization logic. (#14440) 2021-10-04 15:40:35 -03:00
google-search.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
group-activity-filter.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
group-card-contents.js DEV: don't swallow a promise from group.findMembers method and switch to using async/await (#13888) 2021-07-30 21:00:34 +04:00
group-flair-inputs.js FIX: Reuse avatar-flair component in group preview (#13961) 2021-08-09 15:38:49 -03:00
group-imap-email-settings.js FEATURE: Improve group email settings UI (#13083) 2021-05-28 09:28:18 +10:00
group-manage-email-settings.js FEATURE: Improve group email settings UI (#13083) 2021-05-28 09:28:18 +10:00
group-manage-logs-filter.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
group-manage-logs-row.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
group-manage-save-button.js FEATURE: update existing users when group default notifications changed. (#13434) 2021-07-15 19:53:57 +05:30
group-member-dropdown.js FEATURE: Improve group settings and members management (#11878) 2021-02-03 16:11:08 +02:00
group-member.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
group-membership-button.js DEV: extract leave_group method from the group#remove_member method (#13823) 2021-07-22 20:14:18 +04:00
group-navigation.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
group-post.js Add primary group classes (#12807) 2021-04-22 15:00:23 -07:00
group-selector.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
group-smtp-email-settings.js FEATURE: Improve group email settings UI (#13083) 2021-05-28 09:28:18 +10:00
groups-form-interaction-fields.js UX: show flair help text for private member visibility only (#14005) 2021-08-11 16:23:58 +10:00
groups-form-membership-fields.js FIX: Allow group owners manage group flair (#12415) 2021-03-17 16:35:51 +02:00
groups-form-profile-fields.js FIX: Debounce group name validation correctly (#13757) 2021-07-16 10:51:13 +08:00
groups-info.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
header-extra-info.js DEV: Add the missing app subdirectory (#9499) 2020-04-23 10:07:54 -03:00
hidden-details.js UX: hide the list of file extensions on the upload dialog (#12836) 2021-05-04 15:16:00 +04:00
hide-modal-trigger.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
highlight-search.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
highlight-text.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
honeypot-input.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
html-with-links.js FIX: Follow open in new tab site setting for bio links (#11418) 2020-12-08 10:56:14 +11:00
iframed-html.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
ignored-user-list-item.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
ignored-user-list.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
image-uploader.js FEATURE: Change all core to use uppy-image-uploader (#14428) 2021-10-19 13:25:42 +10:00
images-uploader.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
input-tip.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
invite-link-panel.js FIX: Show link in invite panel (#12378) 2021-03-12 17:09:05 +02:00
invite-panel.js FIX: Remove superfluous topic allowed users on group invite (#14656) 2021-10-22 08:57:51 +10:00
json-editor.js DEV: support json_schema in theme settings (#12294) 2021-03-10 20:15:04 -05:00
latest-topic-list-item.js FEATURE: Add more class names to latest-topic-list-item (#12933) 2021-05-04 16:40:42 -04:00
link-to-input.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
links-redirect.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
load-more.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
login-buttons.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
login-modal.js DEV: Use key over the deprecated keyCode (#13795) 2021-08-09 11:41:36 +02:00
login-reply-button.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
mobile-category-topic.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
mobile-nav.js FIX: Allow mobile-nav to work without loading transitions (#12184) 2021-02-23 11:16:40 +00:00
modal-panel.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
modal-tab.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
mount-widget.js FIX: Optimistically fix topic timeline state issues 2021-09-13 16:29:39 -04:00
nav-item.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
navigation-bar.js FIX: Add check for if element doesnt exist on ensureDropClosed (#13256) 2021-06-02 13:44:21 -05:00
navigation-item.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
notification-consent-banner.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
number-field.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
parent-category-row.js FEATURE: add expandable muted categories ui to /categories page. (#10303) 2020-07-30 23:32:51 +05:30
password-field.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
pick-files-button.js FIX: pick-files-button component (#14045) 2021-08-19 14:56:03 +04:00
plugin-connector.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
plugin-outlet.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
popup-input-tip.js UX: alert screen readers when there is an issue saving a post (#13182) 2021-05-27 18:19:05 +10:00
preference-checkbox.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
private-message-glyph.js FIX: isVisible is no longer allowed even if used properly 2020-09-11 15:05:50 -04:00
pwa-install-banner.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
quote-button.js FIX: only replaces double quotes and uses unicode (#14644) 2021-10-19 11:01:46 +02:00
radio-button.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
related-messages.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
relative-time-picker.js FEATURE: Add year to relative time picker (#12268) 2021-03-03 11:41:07 +10:00
reviewable-bundled-action.js FIX: Adjust reviewable menu placement on mobile (#11420) 2020-12-07 13:39:18 -05:00
reviewable-claimed-topic.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
reviewable-conversation-post.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
reviewable-field-category.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
reviewable-field-tags.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
reviewable-histories.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
reviewable-item.js FIX: Clear stale status of reloaded reviewables (#13750) 2021-07-16 19:57:12 +03:00
reviewable-post-edits.js FEATURE: Review every post using the review queue. (#12734) 2021-04-21 08:41:36 -03:00
reviewable-queued-post.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
reviewable-score.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
reviewable-user.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
save-controls.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
scroll-tracker.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
scrolling-post-stream.js FEATURE: Add last visit indication to topic view page. (#13471) 2021-07-05 14:17:31 +08:00
search-advanced-options.js FEATURE: user/category/tag results in full page search (#14346) 2021-09-20 10:01:11 -04:00
search-result-entries.js REFACTOR: break search results in multiple sub components 2021-03-19 10:49:14 +01:00
search-result-entry.js A11Y: Add more descriptive labels for some dropdowns (#14402) 2021-09-21 11:19:49 -04:00
search-text-field.js A11Y: gives autocomplete in search a more accessible name (#12164) 2021-02-22 12:11:06 +01:00
second-factor-form.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
second-factor-input.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
security-key-form.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
share-panel.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
share-popup.js DEV: Use key over the deprecated keyCode (#13795) 2021-08-09 11:41:36 +02:00
share-source.js UX: Improve share modal consistency (#13689) 2021-07-12 20:55:59 -04:00
shared-draft-controls.js FIX: Make category change work with shared drafts (#11705) 2021-01-14 19:20:34 +02:00
signup-cta.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
site-header.js UX: Ensure sticky elements don't overflow header (#14432) 2021-09-23 14:51:06 -04:00
slow-mode-info.js FIX: Anons should see the Topic slow mode notice. (#12460) 2021-03-22 13:55:45 -03:00
software-update-prompt.js DEV: Do not always include software update HTML in DOM (#13291) 2021-06-07 09:40:03 -04:00
sub-category-item.js FEATURE: add expandable muted categories ui to /categories page. (#10303) 2020-07-30 23:32:51 +05:30
sub-category-row.js FEATURE: add expandable muted categories ui to /categories page. (#10303) 2020-07-30 23:32:51 +05:30
suggested-topics.js FEATURE: Display new/unread count in browse more messages for PMs. (#14188) 2021-09-07 12:30:40 +08:00
table-header-toggle.js DEV: Plugin API to add directory columns (#13440) 2021-06-22 13:00:04 -05:00
tag-drop-link.js FIX: incorrect URL for tag pages inside category in subfolder setup. (#12222) 2021-02-26 22:44:34 +05:30
tag-groups-form.js UX: Adjustments to tag groups layout (#13269) 2021-06-03 13:58:28 -04:00
tag-info.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
tag-list.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
tags-admin-dropdown.js UX: more consistent setting/edit buttons (#13276) 2021-06-03 18:33:36 -04:00
tap-tile-grid.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
tap-tile.js A11Y: uses role=button and supports ariaPressed for tapTile (#11827) 2021-01-25 11:31:52 +01:00
text-field.js A11Y: makes search results count readable by screen reader (#12437) 2021-03-18 18:44:26 +01:00
time-input.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
time-shortcut-picker.js FIX: Clarify None Needed option when editing bookmarks (#14633) 2021-10-19 10:32:20 +10:00
top-period-buttons.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
topic-admin-menu-button.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
topic-category.js DEV: Add the missing app subdirectory (#9499) 2020-04-23 10:07:54 -03:00
topic-dismiss-buttons.js FEATURE: Allow selective dismissal of new and unread topics (#12976) 2021-05-26 09:38:46 +10:00
topic-entrance.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
topic-footer-buttons.js UX: provide a region for various topic actions (#13152) 2021-05-26 11:05:35 +10:00
topic-list-item.js FEATURE: Add last visit indication to topic view page. (#13471) 2021-07-05 14:17:31 +08:00
topic-list.js FIX: select all button on group assigned page (#14523) 2021-10-06 16:18:16 +11:00
topic-navigation.js FIX: Force timeline/progress to re-insert into DOM on topic change 2021-07-21 12:37:40 -04:00
topic-post-badges.js FEATURE: Add last visit indication to topic view page. (#13471) 2021-07-05 14:17:31 +08:00
topic-progress.js UX: Prevent topic progress bar from overlapping (#12780) 2021-04-21 22:53:23 -04:00
topic-status.js DEV: Plugin outlet in topic-status component (#13763) 2021-07-16 11:10:35 -05:00
topic-timeline.js FIX: Optimistically fix topic timeline state issues 2021-09-13 16:29:39 -04:00
topic-timer-info.js FIX: additionalOpts update and change to function (#12546) 2021-03-29 15:27:55 -04:00
topic-title.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
track-selected.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
uppy-image-uploader.js FEATURE: Change all core to use uppy-image-uploader (#14428) 2021-10-19 13:25:42 +10:00
user-avatar-flair.js FEATURE: Let users select flair (#13587) 2021-07-08 10:46:21 +03:00
user-badge.js UX: Prevent badges on usercards from overflowing (#12037) 2021-02-11 13:41:58 -05:00
user-card-contents.js DEV: Plugin API to add card listener elements (#13887) 2021-07-29 14:25:10 -05:00
user-field.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
user-flag-percentage.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
user-info.js UX: respect "prioritize username in ux" setting wherever possible (#12357) 2021-03-11 21:55:14 +05:30
user-link.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
user-notification-schedule-day.js FEATURE: Create notification schedule to automatically set do not disturb time (#11665) 2021-01-20 10:31:52 -06:00
user-notification-schedule.js FEATURE: Create notification schedule to automatically set do not disturb time (#11665) 2021-01-20 10:31:52 -06:00
user-notifications-large.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
user-selector.js DEV: Deprecate {{user-selector}} and replace it with {{email-group-user-chooser}} (#12042) 2021-02-12 13:51:36 +03:00
user-stat.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
user-stream-item.js DEV: makes user-stream an unordered list (#11770) 2021-01-20 15:57:38 +01:00
user-stream.js FIX: Decorate posts that are loaded after the initial render in post stream (#14600) 2021-10-14 08:10:13 +03:00
user-summary-category-search.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
user-summary-section.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
user-summary-topic.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
user-summary-topics-list.js DEV: Sort imports alphabetically (#11382) 2020-12-01 15:31:26 -03:00
user-summary-user.js DEV: apply new coding standards (#10592) 2020-09-04 13:42:47 +02:00
watch-read.js FEATURE: Allow selective dismissal of new and unread topics (#12976) 2021-05-26 09:38:46 +10:00