| Server IP : 162.214.74.102 / Your IP : 216.73.216.192 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/erp/application/plugins/module_fish/assets/js/ |
Upload File : |
$(document).ready(function()
{
$("#weight_expenditure").mask('999.999');
// SELECTS
$(".food_select").select2({theme: "bootstrap"});
$('.add-food').on('click', function () {
var cloned = $(this).parent().clone(false);
cloned.css('margin-top', '20px');
cloned.find('input').val('');
cloned.find('.add-food')
.removeClass('md-btn-success add-food')
.addClass('md-btn-danger remove-food')
.css('border', '1px solid #e94033');
cloned.find('i')
.removeClass('fa-plus')
.addClass('fa-trash');
$('.append-food').append(cloned);
});
$('body').on('click', '.remove-food', function() {
$(this).parent().remove();
});
$('#description_specie').redactor(
{
imageResizable: true,
imagePosition: true,
minHeight: 200,
imageTag: 'figure',
imageUpload: _url + "module_cms/image/create",
plugins: ['fontcolor']
}
);
});