From b0fd4cfd69a51455b657e16fbd09a2bf11740904 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Mon, 30 Aug 2010 14:00:39 -0400
Subject: [PATCH] - Small improvement
---
program/js/app.js | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/program/js/app.js b/program/js/app.js
index 48e05f4..52bf4f6 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1782,11 +1782,11 @@
{
if (page == 'next')
page = this.env.current_page+1;
- if (page == 'last')
+ else if (page == 'last')
page = this.env.pagecount;
- if (page == 'prev' && this.env.current_page > 1)
+ else if (page == 'prev' && this.env.current_page > 1)
page = this.env.current_page-1;
- if (page == 'first' && this.env.current_page > 1)
+ else if (page == 'first' && this.env.current_page > 1)
page = 1;
if (page > 0 && page <= this.env.pagecount) {
--
Gitblit v1.9.1