[
https://issues.apache.org/jira/browse/FLINK-3719?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15660423#comment-15660423
]
ASF GitHub Bot commented on FLINK-3719:
---------------------------------------
Github user mushketyk commented on a diff in the pull request:
https://github.com/apache/flink/pull/2467#discussion_r87701960
--- Diff:
flink-runtime-web/web-dashboard/app/scripts/modules/jobs/jobs.dir.coffee ---
@@ -168,14 +168,15 @@ angular.module('flinkApp')
return
# ----------------------------------------------
-.directive 'split', () ->
- compile: jQuery () ->
- Split(['#canvas', '#job-panel'], (
- sizes: [50, 50]
- direction: 'vertical'
- ))
-
- return
+.directive 'split', () ->
+ return compile: (tElem, tAttrs) ->
+ getId = (elem) -> "#" + elem.id
+ id1 = getId tElem.children().get(0)
+ id2 = getId tElem.children().get(1)
+ Split([id1, id2], (
--- End diff --
Good point. I'll check if this works.
> WebInterface: Moving the barrier between graph and stats
> --------------------------------------------------------
>
> Key: FLINK-3719
> URL: https://issues.apache.org/jira/browse/FLINK-3719
> Project: Flink
> Issue Type: Improvement
> Components: Webfrontend
> Reporter: Niels Basjes
> Assignee: Ivan Mushketyk
>
> It would be really useful if the separator between the graphical view of a
> job topology at the top and the textual overview of the counters at the
> bottom can be moved up/down.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)