Something went wrong while setting issue due date.
problems with higher pagination numbers
Closed
problems with higher pagination numbers
When there are more than 10 pagination sites, load more reviews button disappear on 2nd pagination site.
I'm not sure why but in the review navigation script test:
if ( this.site >= this.sites )
return true when site is 2 and sites is 11 or more
I'm not sure if this is correct solution but for me works following: In the review.js file replace lines 327-329:
this.finish = function ( data )
{
if ( this.site >= this.sites ) {
with:
this.finish = function ( data )
{
var site = +(this.site);
var sites = +(this.sites);
if ( site >= sites ) {
changed milestone to %2.3
added Review & Rating fixed in vc and removed new labels
added test passed and removed fixed in vc labels
Please register or sign in to reply