forked from Gitlink/forgeplus
19 lines
627 B
Plaintext
19 lines
627 B
Plaintext
$("#banner-modals").html("<%= j render(partial: 'admins/topic/banners/form_modal', locals: {type: 'update'}) %>")
|
|
$(".banner-change-modal").modal('show');
|
|
|
|
$('.logo-item-left').on("change", 'input[type="file"]', function () {
|
|
var $fileInput = $(this);
|
|
var file = this.files[0];
|
|
var imageType = /image.*/;
|
|
if (file && file.type.match(imageType)) {
|
|
var reader = new FileReader();
|
|
reader.onload = function () {
|
|
var $box = $fileInput.parent();
|
|
$box.find('img').attr('src', reader.result).css('display', 'block');
|
|
$box.addClass('has-img');
|
|
};
|
|
reader.readAsDataURL(file);
|
|
} else {
|
|
}
|
|
});
|