Subversion Repositories My Stuff

Compare Revisions

Ignore whitespace Rev 25 → Rev 24

/trunk/JavaScripts/textarea-maxlength.js
File deleted
\ No newline at end of file
Property changes:
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: JavaScripts/textarea_limit.js
===================================================================
--- JavaScripts/textarea_limit.js (revision 25)
+++ JavaScripts/textarea_limit.js (nonexistent)
@@ -1,3 +0,0 @@
-$(document).ready(function(){
- $('#sms_form').find('textarea').maxLength(120);
-});
\ No newline at end of file
/JavaScripts/textarea_limit.js
Property changes:
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: JavaScripts/mouse_toggle.js
===================================================================
--- JavaScripts/mouse_toggle.js (revision 25)
+++ JavaScripts/mouse_toggle.js (revision 24)
@@ -1,10 +1,20 @@
+/*#######################################################################
+# 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("fast");
+ $content.slideDown("slow");
}).mouseleave(function(){
- $content.slideUp("fast");
+ $content.slideUp("slow");
});
- });
-})
\ No newline at end of file
+ });
+});
\ No newline at end of file
Index: JavaScripts/news_search.js
===================================================================
--- JavaScripts/news_search.js (revision 25)
+++ JavaScripts/news_search.js (revision 24)
@@ -1,5 +1,4 @@
$(document).ready(function(){
- $('div.filter_form').show();
$('input#filter').quicksearch('.AllNews div.NewsSummary', {
'noResults': '#noresults',
'show': function () {