Parent Directory
|
Revision Log
|
Revision Graph
Update patterns UI and pattern files.
| 1 | |
| 2 | $(document).ready(function(){ |
| 3 | $('.pattern-info').hide(); |
| 4 | $('.pattern-info').css({'position' : 'absolute', 'width' : '300px'}); |
| 5 | $('.pattern-title').hover( |
| 6 | function(){ |
| 7 | $('#' + $(this).attr('id') + '-info').show(); |
| 8 | }, |
| 9 | function(){ |
| 10 | $('#' + $(this).attr('id') + '-info').hide(); |
| 11 | } |
| 12 | ); |
| 13 | }); |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |