mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-31 21:08:36 -04:00
1c329624a5
- Documentation has been converted to Sphinx. In particular, the generated API documentation has been constructed into a full blown "API Reference" section which organizes editorial documentation combined with generated docstrings. Cross linking between sections and API docs are vastly improved, a javascript-powered search feature is provided, and a full index of all classes, functions and members is provided.
8 lines
190 B
JavaScript
8 lines
190 B
JavaScript
$(document).ready(function(){
|
|
$('div.popup_sql').hide();
|
|
$('a.sql_link').click(function() {
|
|
$(this).nextAll('div.popup_sql:first').toggle();
|
|
return false;
|
|
})
|
|
});
|