Refactoring. Fix bug with preventing composition input.

This commit is contained in:
Oleg Korshul 2022-10-10 22:26:42 +03:00
parent 1035069d92
commit 6109598791

View file

@ -365,7 +365,8 @@ define([
onCountPages: function(count) { onCountPages: function(count) {
maxPages = count; maxPages = count;
$('#pages').text(this.textOf + " " + count); if (maxPages !== count)
$('#pages').text(this.textOf + " " + count);
}, },
onCurrentPage: function(number) { onCurrentPage: function(number) {