mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
20 lines
479 B
JavaScript
20 lines
479 B
JavaScript
(function($) {
|
|
$('.ss-assetuploadfield').entwine({
|
|
onmatch: function() {
|
|
this._super();
|
|
|
|
// Hide the "second step" part until we're actually uploading
|
|
this.find('.ss-uploadfield-editandorganize').hide();
|
|
},
|
|
onunmatch: function() {
|
|
this._super();
|
|
},
|
|
onfileuploadadd: function(e) {
|
|
this.find('.ss-uploadfield-editandorganize').show();
|
|
},
|
|
onfileuploadstart: function(e) {
|
|
this.find('.ss-uploadfield-editandorganize').show();
|
|
}
|
|
});
|
|
}(jQuery));
|