Hide sql query when switching to table structure view

This commit is contained in:
Dan Sosedoff 2015-03-09 14:03:54 -05:00
parent 0764b9263d
commit cc983f9ad6
2 changed files with 6 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -186,6 +186,10 @@ function showTableStructure() {
getTableStructure(name, function(data) {
setCurrentTab("table_structure");
buildTable(data);
$("#input").hide();
$("#output").addClass("full");
$("#results").addClass("no-crop");
});
}