From 33e2e42321ef70c772ee180ed9e35397e922abac Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Thu, 25 Mar 2010 14:26:19 -0400
Subject: [PATCH] - Use PageUp/PageDown for listpage change (#1486430)

---
 program/js/app.js |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index 5e5bfe0..a9838bc 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1456,6 +1456,10 @@
       this.command('delete');
     else if (list.key_pressed == list.BACKSPACE_KEY)
       this.command('delete');
+    else if (list.key_pressed == 33)
+      this.command('previouspage');
+    else if (list.key_pressed == 34)
+      this.command('nextpage');
     else
       list.shiftkey = false;
     };

--
Gitblit v1.9.1