diff options
author | matthew.gregg <matthew.gregg@gmail.com> | 2008-06-24 13:46:13 -0400 |
---|---|---|
committer | matthew.gregg <matthew.gregg@gmail.com> | 2008-06-24 13:46:13 -0400 |
commit | 240989994dae2fffc2e06fb8a88356b4c8ebe4a0 (patch) | |
tree | 3706e191fd5d6750f7e3e5981189040813e0b39d /lib | |
parent | 5593d4a50ba09b47c99ba5608911d50d99d54f33 (diff) |
Char counter for notice update text area. http://laconi.ca/PITS/00094
Added a util.js and this uses JQuery.
darcs-hash:20080624174613-982e4-1a6f11365957e6f4ed70b87ce64fb9938441f01f.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php index f9abb6d90..0762d3a8f 100644 --- a/lib/util.php +++ b/lib/util.php @@ -170,6 +170,9 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall= common_element('script', array('type' => 'text/javascript', 'src' => common_path('js/jquery.min.js')), ' '); + common_element('script', array('type' => 'text/javascript', + 'src' => common_path('js/util.js')), + ' '); if ($callable) { if ($data) { @@ -834,6 +837,7 @@ function common_notice_form($action=NULL, $content=NULL) { common_element('label', array('for' => 'status_update', 'id' => 'status_label'), _t('What\'s up, ').$user->nickname.'?'); + common_element('span', array('id' => 'counter', 'class' => 'counter'), '140'); common_element('textarea', array('id' => 'status_textarea', 'name' => 'status_textarea'), ($content) ? $content : ' '); |