← Back to team overview

team4alfanous team mailing list archive

[Branch ~team4alfanous/alfanous/alfanous-git] Rev 247: fix a bug in pages links that appeared after implementing the click-able

 

------------------------------------------------------------
revno: 247
git commit: a998715c5965ba164427df456e53f42ed9ef4323
committer: Assem Chelli <assem.ch@xxxxxxxxx>
timestamp: Sat 2012-06-09 02:58:17 +0100
message:
  fix a bug in pages links that appeared after implementing the click-able
  tags
modified:
  interfaces/web/wui/index.html


--
lp:~team4alfanous/alfanous/alfanous-git
https://code.launchpad.net/~team4alfanous/alfanous/alfanous-git

Your team Alfanous team is subscribed to branch lp:~team4alfanous/alfanous/alfanous-git.
To unsubscribe from this branch go to https://code.launchpad.net/~team4alfanous/alfanous/alfanous-git/+edit-subscription
=== modified file 'interfaces/web/wui/index.html'
--- interfaces/web/wui/index.html	2012-06-09 01:04:39 +0000
+++ interfaces/web/wui/index.html	2012-06-09 01:58:17 +0000
@@ -315,7 +315,8 @@
 				$(".pages a").one('click', function(event) {
 					var param2 = param;
 					param2.page = $(this).text();
-				
+					param2.search = $("#search_box").val();
+					
 					// Mouad
 					redirect_to_params ( param2 );
 					// search_for ( param2 );
@@ -328,7 +329,7 @@
 					var param2 = param;
 					if (param2.page > 1) {
 						param2.page = parseInt ( param2.page ) - 1;
-					
+						param2.search = $("#search_box").val();
 						// Mouad
 						redirect_to_params ( param2 );
 						// search_for ( param2 );
@@ -341,7 +342,8 @@
 					var param2 = param;
 					if  (param2.page < nb_pages) {
 						param2.page = parseInt ( param2.page ) + 1;
-					
+						param2.search = $("#search_box").val();
+											
 						// Mouad
 						redirect_to_params ( param2 );
 						// search_for ( param2 );