mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-10 02:39:59 -04:00
14 lines
244 B
JavaScript
14 lines
244 B
JavaScript
|
|
function initSQLPopups() {
|
|
$('div.popup_sql').hide();
|
|
$('a.sql_link').click(function() {
|
|
$(this).nextAll('div.popup_sql:first').toggle();
|
|
return false;
|
|
})
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
initSQLPopups();
|
|
});
|
|
|