|
From: <be...@us...> - 2012-04-15 02:48:17
|
Revision: 9328
http://xoops.svn.sourceforge.net/xoops/?rev=9328&view=rev
Author: beckmi
Date: 2012-04-15 02:48:11 +0000 (Sun, 15 Apr 2012)
Log Message:
-----------
ID: 3466534 tooltip "$ not defined" fix (culex)
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.5/docs/changelog.250.txt
XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/system/themes/default/js/tooltip.js
Modified: XoopsCore/branches/2.5.x/2.5.5/docs/changelog.250.txt
===================================================================
--- XoopsCore/branches/2.5.x/2.5.5/docs/changelog.250.txt 2012-04-15 00:38:58 UTC (rev 9327)
+++ XoopsCore/branches/2.5.x/2.5.5/docs/changelog.250.txt 2012-04-15 02:48:11 UTC (rev 9328)
@@ -5,6 +5,7 @@
===============================
Bugfixes:
- preventing division by zero in pagenav.php (timgno)
+ - ID: 3466534 tooltip "$ not defined" fix (culex)
Updated:
- phpThumb to 1.7.11 (mamba)
Modified: XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/system/themes/default/js/tooltip.js
===================================================================
--- XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/system/themes/default/js/tooltip.js 2012-04-15 00:38:58 UTC (rev 9327)
+++ XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/system/themes/default/js/tooltip.js 2012-04-15 02:48:11 UTC (rev 9328)
@@ -1,3 +1,4 @@
+( function($) {
/*
* Tooltip script
* powered by jQuery (http://www.jquery.com)
@@ -60,4 +61,5 @@
// starting the script on page load
$(document).ready(function(){
tooltip();
+});
});
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|