/var/www/vhosts/ihelp.ro/httpdocs/plugins/AdminLTE/webroot/js
Edit: /var/www/vhosts/ihelp.ro/httpdocs/plugins/AdminLTE/webroot/js/custom.js.delete (856B)
$(document).ready(function () {
$('.sponsor-img').change(function () {
if (this.files && this.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#imagePreview').attr('src', e.target.result);
};
reader.readAsDataURL(this.files[0]);
}
})
$('.banner-img').change(function () {
if (this.files && this.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#bannerImg').attr('src', e.target.result);
};
reader.readAsDataURL(this.files[0]);
}
})
// Daterangepicker
// reset filters
$('.btn-reset').on('click', function () {
location.href = location.protocol + '//' + location.host + location.pathname
})
})