You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ar...@apache.org on 2017/09/07 12:01:52 UTC

drill git commit: DRILL-5765: Json query profile is not shown on Web UI

Repository: drill
Updated Branches:
  refs/heads/master fde0a1df1 -> 7a900b71f


DRILL-5765: Json query profile is not shown on Web UI

closes #933


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/7a900b71
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/7a900b71
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/7a900b71

Branch: refs/heads/master
Commit: 7a900b71fd269aceee7301afb18fd8d303df5bcd
Parents: fde0a1d
Author: Sindhuri Rayavaram <si...@mapr.local>
Authored: Fri Sep 1 16:51:07 2017 -0700
Committer: Arina Ielchiieva <ar...@gmail.com>
Committed: Thu Sep 7 12:53:36 2017 +0300

----------------------------------------------------------------------
 exec/java-exec/src/main/resources/rest/static/js/graph.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/7a900b71/exec/java-exec/src/main/resources/rest/static/js/graph.js
----------------------------------------------------------------------
diff --git a/exec/java-exec/src/main/resources/rest/static/js/graph.js b/exec/java-exec/src/main/resources/rest/static/js/graph.js
index 2d38e63..b646430 100644
--- a/exec/java-exec/src/main/resources/rest/static/js/graph.js
+++ b/exec/java-exec/src/main/resources/rest/static/js/graph.js
@@ -11,7 +11,7 @@
  *  language governing permissions and limitations under the License.
  */
 
-$(window).load(function () {
+$(window).on('load',(function () {
     // for each record, unroll the array pointed to by "fieldpath" into a new
     // record for each element of the array
     function unnest (table, fieldpath, dest) {
@@ -310,4 +310,4 @@ $(window).load(function () {
         //            .append("tbody"), extractminortimes(profile),
         //            ["name", "start", "end"]);
     });
-});
+}));