|
Last change
on this file since f712e16 was
57728c1,
checked in by Mateusz Hromada <ruanda@…>, 16 years ago
|
|
Move old files to _old dir.
|
-
Property mode set to
100644
|
|
File size:
325 bytes
|
| Line | |
|---|
| 1 | function menu_select_element(el_menu, is_selected) { |
|---|
| 2 | |
|---|
| 3 | if(is_selected) { |
|---|
| 4 | el_menu.style.background = '#00FF66'; |
|---|
| 5 | el_menu.style.cursor = 'hand'; // for IE |
|---|
| 6 | el_menu.style.cursor = 'pointer'; |
|---|
| 7 | } |
|---|
| 8 | else { |
|---|
| 9 | el_menu.style.background = '#CCFF99'; |
|---|
| 10 | el_menu.style.cursor = 'default'; |
|---|
| 11 | } |
|---|
| 12 | return true; |
|---|
| 13 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.