Subversion Repositories My Stuff

Compare Revisions

Ignore whitespace Rev 12 → Rev 13

/trunk/JavaScripts/dialog_email_form_open.js
1,4 → 1,4
#######################################################################
/*#######################################################################
# 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
7,7 → 7,7
# License: GPLv3
# The full version of the licencse can be obtainted by visiting:
# http://www.gnu.org/licenses/gpl.html
#######################################################################
#######################################################################*/
$.fx.speeds._default = 1000;
$(document).ready(function() {
$('a.email_link').each(function() {
/trunk/JavaScripts/dialog_sms_form_open.js
1,4 → 1,4
#######################################################################
/*#######################################################################
# 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
7,7 → 7,7
# License: GPLv3
# The full version of the licencse can be obtainted by visiting:
# http://www.gnu.org/licenses/gpl.html
#######################################################################
#######################################################################*/
$.fx.speeds._default = 1000;
$(document).ready(function() {
$('a.sms_link').each(function() {
/trunk/JavaScripts/email_form.js
1,4 → 1,4
#######################################################################
/*#######################################################################
# 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
7,7 → 7,7
# License: GPLv3
# The full version of the licencse can be obtainted by visiting:
# http://www.gnu.org/licenses/gpl.html
#######################################################################
#######################################################################*/
$(document).ready(function(){
var options = {
target: '#email_form',
/trunk/JavaScripts/filmtooltip.js
0,0 → 1,7
$(document).ready(function(){
$('a.film_link').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/imgtooltip.js
===================================================================
--- JavaScripts/imgtooltip.js (nonexistent)
+++ JavaScripts/imgtooltip.js (revision 13)
@@ -0,0 +1,7 @@
+$(document).ready(function(){
+ $('a.group').tooltip({
+ effect: 'slide',
+ tipClass : 'imgtooltip',
+ opacity : 0.7
+ }).dynamic({ bottom: { direction: 'down', bounce: true } });
+});
/JavaScripts/imgtooltip.js
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/menu.js
===================================================================
--- JavaScripts/menu.js (nonexistent)
+++ JavaScripts/menu.js (revision 13)
@@ -0,0 +1,28 @@
+/*#######################################################################
+# 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(){
+ var $menu = $('.artmenu');
+ $menu.children('li.nav_menu').each(function(){
+ var $this = $(this);
+ var $anchor = $this.children('a');
+ $anchor.data('width',$anchor.width());
+
+ $this.bind('mouseenter',function(){
+ $menu.find('ul.submenu').stop(true,true).hide();
+ $anchor.stop().animate({'width':'180px'},300,function(){
+ $this.find('ul.submenu').slideDown(500);
+ });
+ }).bind('mouseleave',function(){
+ $this.find('ul.submenu').stop(true,true).hide();
+ $anchor.stop().animate({'width':$anchor.data('width')+'px'},300);
+ });
+ });
+});
\ No newline at end of file
/JavaScripts/menu.js
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/mouse_toggle.js
===================================================================
--- JavaScripts/mouse_toggle.js (revision 12)
+++ JavaScripts/mouse_toggle.js (revision 13)
@@ -1,4 +1,4 @@
-#######################################################################
+/*#######################################################################
# 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
@@ -7,7 +7,7 @@
# 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(){
var $content = $(this).find('div.toggle_on_mouse_content:first');
Index: JavaScripts/scrollable.js
===================================================================
--- JavaScripts/scrollable.js (nonexistent)
+++ JavaScripts/scrollable.js (revision 13)
@@ -0,0 +1,9 @@
+$(document).ready(function(){
+ $('div.scrollable').scrollable({
+ mousewheel: true,
+ keyboard: true,
+ next: ".next",
+ prev: ".prev",
+ speed: 500
+ }).navigator();
+});
\ No newline at end of file
/JavaScripts/scrollable.js
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/sms_form.js
===================================================================
--- JavaScripts/sms_form.js (revision 12)
+++ JavaScripts/sms_form.js (revision 13)
@@ -1,4 +1,4 @@
-#######################################################################
+/*#######################################################################
# 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
@@ -7,7 +7,7 @@
# License: GPLv3
# The full version of the licencse can be obtainted by visiting:
# http://www.gnu.org/licenses/gpl.html
-########################################################################
+########################################################################*/
$(document).ready(function(){
var options = {
target: '#sms_form',
Index: JavaScripts/socialtooltip.js
===================================================================
--- JavaScripts/socialtooltip.js (nonexistent)
+++ JavaScripts/socialtooltip.js (revision 13)
@@ -0,0 +1,7 @@
+$(document).ready(function(){
+ $('.bookmarking').find('a').tooltip({
+ effect: 'fade',
+ tipClass : 'imgtooltip',
+ opacity : 0.7
+ }).dynamic({ bottom: { direction: 'down', bounce: true } });
+});
\ No newline at end of file
/JavaScripts/socialtooltip.js
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: JavaScripts/toggle_slide.js
===================================================================
--- JavaScripts/toggle_slide.js (revision 12)
+++ JavaScripts/toggle_slide.js (revision 13)
@@ -1,4 +1,4 @@
-#######################################################################
+/*#######################################################################
# 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
@@ -7,7 +7,7 @@
# License: GPLv3
# The full version of the licencse can be obtainted by visiting:
# http://www.gnu.org/licenses/gpl.html
-#######################################################################
+#######################################################################*/
$(document).ready(function(){
$('div.toggle').each(function(){
var $link = $(this).children('a.toggle_link:first');
Index: JavaScripts/youtube_dialog.js
===================================================================
--- JavaScripts/youtube_dialog.js (revision 12)
+++ JavaScripts/youtube_dialog.js (revision 13)
@@ -1,4 +1,4 @@
-#######################################################################
+/*#######################################################################
# 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
@@ -7,7 +7,7 @@
# License: GPLv3
# The full version of the licencse can be obtainted by visiting:
# http://www.gnu.org/licenses/gpl.html
-#######################################################################
+#######################################################################*/
$.fx.speeds._default = 1000;
$(document).ready(function() {
$('a.film_link').each(function() {