Subversion Repositories My Stuff

Compare Revisions

Ignore whitespace Rev 24 → Rev 25

/trunk/JavaScripts/mouse_toggle.js
1,20 → 1,10
/*#######################################################################
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# Author: Andrzej Kardaƛ
# License: GPLv3
# The full version of the licencse can be obtainted by visiting:
# http://www.gnu.org/licenses/gpl.html
#######################################################################*/
$(document).ready(function(){
$('div.mouse_toggle').each(function(){
$('div.mouse_toggle').each(function(){
var $content = $(this).find('div.toggle_on_mouse_content:first');
$(this).mouseenter(function(){
$content.slideDown("slow");
$content.slideDown("fast");
}).mouseleave(function(){
$content.slideUp("slow");
$content.slideUp("fast");
});
});
});
});
})
/trunk/JavaScripts/news_search.js
1,4 → 1,5
$(document).ready(function(){
$('div.filter_form').show();
$('input#filter').quicksearch('.AllNews div.NewsSummary', {
'noResults': '#noresults',
'show': function () {
/trunk/JavaScripts/textarea-maxlength.js
0,0 → 1,96
jQuery.fn.maxLength = function(len)
{
var maxLengthKeyPress = new Array();
var maxLengthChange = new Array();
var appleKeyOn = false;
//the second argument should be true if len should be based on
//the maxlength attribute instead of the input
var useAttr = arguments.length>1 ? arguments[1] : false;
var handleKeyUp = function(e)
{
//if the apple key (macs) is being pressed, set the indicator
if(e.keyCode==224||e.keyCode==91)
appleKeyOn = false;
}
var handleKeyDown = function(e)
{
//if the apple key (macs) is being released, turn off the indicator
if(e.keyCode==224||e.keyCode==91)
appleKeyOn = true;
}
var handleKeyPress = function(e)
{
//if this keyCode does not increase the length of the textarea value,
//just let it go
if(appleKeyOn || (e.charCode==0&&e.keyCode!=13) || e.ctrlKey)
return;
 
//get the textarea element
var textarea = $(this);
//if the length should be based on the maxlength attribute instead of the
//input, use that
len = useAttr ? parseInt(textarea.attr('maxlength')) : len;
//get the value of the textarea
var val = textarea.val();
//get the length of the current text selection
var selected = Math.abs(textarea.attr('selectionStart') - textarea.attr('selectionEnd'));
selected = isNaN(selected) ? 0 : selected;
//if this is the maximum length
if(val.length==len && selected<1)
return false;
else if(val.length>len && selected<(val.length-len))
return textarea.val(textarea.val().substring(0,len));
};
var handleChange = function(e)
{
//get the textarea element
var textarea = $(this);
//if the length should be based on the maxlength attribute instead of the
//input, use that
len = useAttr ? parseInt(textarea.attr('maxlength')) : len;
//truncate the textarea to its proper length
textarea.val(textarea.val().substring(0,len));
};
//get the current keyup and change functions
var removeKeyPress = maxLengthKeyPress[this.selector];
var removeChange = maxLengthChange[this.selector];
 
//remove the keyup and change functions from any matched elements in case
//a maxlength was previously set and a new one is being set
this.die('keypress', removeKeyPress);
this.die('change', removeChange);
if(len==0 && !useAttr)
return;
//set the keyup and change functions for this element set and all future
//elements matching this selector
this.live('keypress', handleKeyPress);
this.live('change', handleChange);
this.live('keydown', handleKeyDown);
this.live('keyup', handleKeyUp);
//save the current keyup and change functions so that they can be
//remove later
maxLengthKeyPress[this.selector] = handleKeyPress;
maxLengthChange[this.selector] = handleChange;
//trigger a keypress event so that the limit will be enforced
this.keypress();
};
 
$(function()
{
//limit the length of all textareas with the maxlength attribute
//NOTE: setting maxlength on a textarea is NOT valid XHTML. this
//was added for coders who want to code loosely--not me!
$('textarea[maxlength]').maxLength(null, true);
});
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/textarea_limit.js
===================================================================
--- JavaScripts/textarea_limit.js (nonexistent)
+++ JavaScripts/textarea_limit.js (revision 25)
@@ -0,0 +1,3 @@
+$(document).ready(function(){
+ $('#sms_form').find('textarea').maxLength(120);
+});
\ No newline at end of file
/JavaScripts/textarea_limit.js
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property