Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
R Review and Rating Application
  • Project overview
    • Project overview
    • Details
    • Activity
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Operations
    • Operations
    • Incidents
  • Analytics
    • Analytics
    • Repository
    • Value Stream
  • External wiki
    • External wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Create a new issue
  • Issue Boards
Collapse sidebar
  • Sigsiu.NET GmbH
  • Review and Rating Application
  • Issues
  • #1

Closed
Open
Created May 02, 2017 by Sławek Sikora@SikorReporter

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 ) {
Assignee
Assign to
2.3
Milestone
2.3 (Past due)
Assign milestone
Time tracking

footer

Legal Notice / Impressum | Data Protection / Datenschutzinformation