Best Answer Cheren-dow , 24 May 2016 - 15:36
Евгений_К, откройте файл:
\media\zoo\applications\jbuniversal\elements\jbfavorite\assets\js\favorite-list.js
Для руссификации замените:
'text_confirm' : 'Are you sure?', 'text_confirm_all': 'Are you sure?'
Для удаления alert измените:
'click .jsFavoriteClear': function (e, $this) { $this.confirm($this.options.text_confirm_all, function () { $this.ajax({ 'url' : $this.options.url_clear, 'target' : this, 'success': function () { window.location.reload(); } }); }); }
на:
'click .jsFavoriteClear': function (e, $this) { //$this.confirm($this.options.text_confirm_all, function () { $this.ajax({ 'url' : $this.options.url_clear, 'target' : this, 'success': function () { window.location.reload(); } }); //}); }Go to the full post