调整water的nav bar,调整water中两个图片的大小

This commit is contained in:
wlx 2010-06-24 14:41:40 +00:00
parent 7dcb371813
commit 0c9fa882db
3 changed files with 3 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 KiB

After

Width:  |  Height:  |  Size: 84 KiB

View File

@ -1,7 +1,9 @@
function extractPageName(hrefString) function extractPageName(hrefString)
{ {
var arr = hrefString.split('/'); var arr = hrefString.split('/');
return (arr.length<3) ? hrefString : arr[3].toLowerCase(); var result=(arr.length<3) ? hrefString : arr[3].toLowerCase();
if (result=='water') result='data';
return result;
} }
function setActiveMenu(arr, crtPage) function setActiveMenu(arr, crtPage)