summaryrefslogtreecommitdiff
path: root/actions/noticesearch.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-09-03 19:42:50 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-09-03 19:42:50 +0000
commit277b464054b24f8d680ddbe762c9e438f6679592 (patch)
treec56e63d8177082385355af38c418813ee2595157 /actions/noticesearch.php
parent0c95734a6874608ea5ed44608cabeda7c3a1b4ea (diff)
Created autofocus method to give focus to an element (primarily a form
control) on page onload. Updated some of the pages to use autofocus.
Diffstat (limited to 'actions/noticesearch.php')
-rw-r--r--actions/noticesearch.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/actions/noticesearch.php b/actions/noticesearch.php
index 1188e7e10..1cd987df3 100644
--- a/actions/noticesearch.php
+++ b/actions/noticesearch.php
@@ -137,6 +137,12 @@ class NoticesearchAction extends SearchAction
$this->pagination($page > 1, $cnt > NOTICES_PER_PAGE,
$page, 'noticesearch', array('q' => $q));
}
+
+ function showScripts()
+ {
+ parent::showScripts();
+ $this->autofocus('q');
+ }
}
class SearchNoticeList extends NoticeList {