From 3da195b5f11d9f481d60f088cc47dd377d97203f Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Tue, 4 Nov 2014 10:07:22 -0600 Subject: [PATCH] Disable results cell cropping if running analyze query manually --- static/js/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/js/app.js b/static/js/app.js index 77c89fb..6f3fcb4 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -232,6 +232,10 @@ function runQuery() { $("#query_progress").hide(); $("#input").show(); $("#output").removeClass("full"); + + if (query.toLowerCase().indexOf("explain") != -1) { + $("#results").addClass("no-crop"); + } }); }