mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 22:46:15 +08:00
2eddf210d3
This rolls uppy back to the previous bundle that was used,
which will break multipart functionality (which is not yet
enabled anywhere).
No other upload functionality should be affected by this change,
it will be as if d295a16dab
had
not been merged.
53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
define("message-bus-client", ["exports"], function (__exports__) {
|
|
__exports__.default = window.MessageBus;
|
|
});
|
|
|
|
define("mousetrap-global-bind", ["exports"], function (__exports__) {
|
|
// In the Rails app it's applied from the vendored file
|
|
__exports__.default = {};
|
|
});
|
|
|
|
define("ember-buffered-proxy/proxy", ["exports"], function (__exports__) {
|
|
__exports__.default = window.BufferedProxy;
|
|
});
|
|
|
|
define("bootbox", ["exports"], function (__exports__) {
|
|
__exports__.default = window.bootbox;
|
|
});
|
|
|
|
define("xss", ["exports"], function (__exports__) {
|
|
__exports__.default = window.filterXSS;
|
|
});
|
|
|
|
define("mousetrap", ["exports"], function (__exports__) {
|
|
__exports__.default = window.Mousetrap;
|
|
});
|
|
|
|
define("@popperjs/core", ["exports"], function (__exports__) {
|
|
__exports__.default = window.Popper;
|
|
__exports__.createPopper = window.Popper.createPopper;
|
|
__exports__.defaultModifiers = window.Popper.defaultModifiers;
|
|
__exports__.popperGenerator = window.Popper.popperGenerator;
|
|
});
|
|
|
|
define("@uppy/core", ["exports"], function (__exports__) {
|
|
__exports__.default = window.Uppy.Core;
|
|
__exports__.Plugin = window.Uppy.Plugin;
|
|
});
|
|
|
|
define("@uppy/aws-s3", ["exports"], function (__exports__) {
|
|
__exports__.default = window.Uppy.AwsS3;
|
|
});
|
|
|
|
define("@uppy/aws-s3-multipart", ["exports"], function (__exports__) {
|
|
__exports__.default = window.Uppy.AwsS3Multipart;
|
|
});
|
|
|
|
define("@uppy/xhr-upload", ["exports"], function (__exports__) {
|
|
__exports__.default = window.Uppy.XHRUpload;
|
|
});
|
|
|
|
define("@uppy/drop-target", ["exports"], function (__exports__) {
|
|
__exports__.default = window.Uppy.DropTarget;
|
|
});
|