|
From: <be...@us...> - 2013-05-16 09:42:17
|
Revision: 11551
http://sourceforge.net/p/xoops/svn/11551
Author: beckmi
Date: 2013-05-16 09:42:13 +0000 (Thu, 16 May 2013)
Log Message:
-----------
Fixing admin theme color switch issue
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/themes/default/js/styleswitch.js
XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/themes/default/js/tooltip.js
Modified: XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2013-05-16 05:22:22 UTC (rev 11550)
+++ XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2013-05-16 09:42:13 UTC (rev 11551)
@@ -4,7 +4,9 @@
2013/05/08: Version 2.5.7 Beta 1
===============================
Bugfixes:
-- ID: 1269 Block template file will not updated after update the module (Irmtfan)
+- ID: 1269 Block template file will not updated after update the module (Irmtfan)
+- reversing fix for potential lack of rendering css and javascript in Installer on the last screen by culex
+- removing @ in link[@rel*=style][title] in styleswitch.js (not needed in jQuery 1.83) (SMEDrieben/Mamba)
===============================
2013/04/21: Version 2.5.6 Final
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/themes/default/js/styleswitch.js
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/themes/default/js/styleswitch.js 2013-05-16 05:22:22 UTC (rev 11550)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/themes/default/js/styleswitch.js 2013-05-16 09:42:13 UTC (rev 11551)
@@ -32,7 +32,7 @@
function switchStylestyle(styleName)
{
- $('link[@rel*=style][title]').each(function(i)
+ $('link[rel*=style][title]').each(function(i)
{
this.disabled = true;
if (this.getAttribute('title') == 'Style sheet') this.disabled = false;
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/themes/default/js/tooltip.js
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/themes/default/js/tooltip.js 2013-05-16 05:22:22 UTC (rev 11550)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/themes/default/js/tooltip.js 2013-05-16 09:42:13 UTC (rev 11551)
@@ -1,4 +1,3 @@
-( function($) {
/*
* Tooltip script
* powered by jQuery (http://www.jquery.com)
@@ -61,5 +60,4 @@
// starting the script on page load
$(document).ready(function(){
tooltip();
-});
});
\ No newline at end of file
|