Subversion Repositories My Stuff

Compare Revisions

Ignore whitespace Rev 16 → Rev 17

/trunk/JavaScripts/bannertooltip.js
0,0 → 1,7
$(document).ready(function(){
$('div.banners a').tooltip({
effect: 'slide',
tipClass : 'imgtooltip',
opacity : 0.7
}).dynamic({ bottom: { direction: 'down', bounce: true } });
});
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/blogautocomplete.js
===================================================================
--- JavaScripts/blogautocomplete.js (nonexistent)
+++ JavaScripts/blogautocomplete.js (revision 17)
@@ -0,0 +1,9 @@
+$(document).ready(function(){
+ var categories_array = Array();
+ $('#categories_list li').each(function() {
+ categories_array.push($(this).text());
+ });
+ $('#cntnt01searchinput').autocomplete({
+ source: categories_array
+ });
+});
\ No newline at end of file
/JavaScripts/blogautocomplete.js
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/dialog_sms_form_open.js
===================================================================
--- JavaScripts/dialog_sms_form_open.js (revision 16)
+++ JavaScripts/dialog_sms_form_open.js (revision 17)
@@ -19,7 +19,7 @@
title: $link.attr('title'),
resizable: false,
modal: true,
- postion: 'center',
+ position: 'center',
show: 'blind',
hide: 'explode'
});
Index: JavaScripts/imgtooltip.js
===================================================================
--- JavaScripts/imgtooltip.js (revision 16)
+++ JavaScripts/imgtooltip.js (revision 17)
@@ -4,4 +4,21 @@
tipClass : 'imgtooltip',
opacity : 0.7
}).dynamic({ bottom: { direction: 'down', bounce: true } });
+
+ $('.rssLayout').find('a').removeAttr('title');
+
+ $('.rssLayout').find('img').tooltip({
+ effect: 'fade',
+ tipClass : 'imgtooltip',
+ opacity : 0.7,
+ position : 'top left'
+ }).dynamic({ bottom: { direction: 'down', bounce: true } });
+
+ $('#printing').find('img').tooltip({
+ effect: 'fade',
+ tipClass : 'imgtooltip',
+ opacity : 0.7,
+ position : 'top left'
+ }).dynamic({ bottom: { direction: 'down', bounce: true } });
+
});
Index: JavaScripts/scrollable_fancy.js
===================================================================
--- JavaScripts/scrollable_fancy.js (nonexistent)
+++ JavaScripts/scrollable_fancy.js (revision 17)
@@ -0,0 +1,9 @@
+$(document).ready(function(){
+ $('div.scrollable_fancybox').scrollable({
+ mousewheel: true,
+ keyboard: true,
+ next: ".next",
+ prev: ".prev",
+ speed: 500
+ }).navigator();
+});
\ No newline at end of file
/JavaScripts/scrollable_fancy.js
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/scrollable_gallery.js
===================================================================
--- JavaScripts/scrollable_gallery.js (nonexistent)
+++ JavaScripts/scrollable_gallery.js (revision 17)
@@ -0,0 +1,25 @@
+$(document).ready(function(){
+ $('.subgallery').tooltip({
+ effect: 'slide',
+ tipClass : 'gallerytooltip',
+ opacity : 0.9
+ }).dynamic({ bottom: { direction: 'down', bounce: true } });
+
+ $('.subgallery img').reflect({height: 0.3, opacity: 0.7});
+
+ $('.subgallery').hover(function() {
+ $(this).find('img:first').reflect({height: 0.3, opacity: 1});
+ $(this).find('img:first').addClass('hovered');
+ }, function() {
+ $(this).find('img:first').reflect({height: 0.3, opacity: 0.7});
+ $(this).find('img:first').removeClass('hovered');
+ });
+
+ $('div.scrollable_gallery').scrollable({
+ mousewheel: true,
+ keyboard: true,
+ next: ".next",
+ prev: ".prev",
+ speed: 500
+ });
+});
\ No newline at end of file
/JavaScripts/scrollable_gallery.js
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/socialtooltip.js
===================================================================
--- JavaScripts/socialtooltip.js (revision 16)
+++ JavaScripts/socialtooltip.js (revision 17)
@@ -1,7 +1,7 @@
$(document).ready(function(){
$('.bookmarking').find('a').tooltip({
- effect: 'fade',
- tipClass : 'imgtooltip',
- opacity : 0.7
+ effect: 'slide',
+ tipClass : 'socialtooltip',
+ opacity : 0.9
}).dynamic({ bottom: { direction: 'down', bounce: true } });
});
\ No newline at end of file
Index: JavaScripts/startuptooltip.js
===================================================================
--- JavaScripts/startuptooltip.js (nonexistent)
+++ JavaScripts/startuptooltip.js (revision 17)
@@ -0,0 +1,7 @@
+$(document).ready(function(){
+ $('a.group').tooltip({
+ effect: 'slide',
+ tipClass : 'gallerytooltip',
+ opacity : 0.9
+ }).dynamic({ bottom: { direction: 'down', bounce: true } });
+});
/JavaScripts/startuptooltip.js
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/youtube_dialog.js
===================================================================
--- JavaScripts/youtube_dialog.js (revision 16)
+++ JavaScripts/youtube_dialog.js (revision 17)
@@ -20,7 +20,8 @@
height: 'auto',
title: $link.attr('title'),
resizable: false,
- modal: true,
+ position: 'top',
+ modal: true,
show: 'blind',
hide: 'fold'
});