Repository: incubator-atlas Updated Branches: refs/heads/0.8-incubating f6d9698ae -> 34c3f8d5b
ATLAS-1732 : After Zoom_out from Lineage view scroll stopped working Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/34c3f8d5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/34c3f8d5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/34c3f8d5 Branch: refs/heads/0.8-incubating Commit: 34c3f8d5b9c65d07900eff36b28792e30d46848c Parents: f6d9698 Author: kevalbhatt <[email protected]> Authored: Wed Apr 12 18:19:19 2017 +0530 Committer: nixonrodrigues <[email protected]> Committed: Wed Apr 12 18:49:15 2017 +0530 ---------------------------------------------------------------------- dashboardv2/public/css/scss/tag.scss | 2 +- dashboardv2/public/js/utils/Utils.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/34c3f8d5/dashboardv2/public/css/scss/tag.scss ---------------------------------------------------------------------- diff --git a/dashboardv2/public/css/scss/tag.scss b/dashboardv2/public/css/scss/tag.scss index c964da3..51c5ee0 100644 --- a/dashboardv2/public/css/scss/tag.scss +++ b/dashboardv2/public/css/scss/tag.scss @@ -19,7 +19,7 @@ //tag.scss .tag-tree { padding: 0; - overflow: auto; + // overflow: auto; li { list-style: none; cursor: pointer; http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/34c3f8d5/dashboardv2/public/js/utils/Utils.js ---------------------------------------------------------------------- diff --git a/dashboardv2/public/js/utils/Utils.js b/dashboardv2/public/js/utils/Utils.js index 6a70b8c..d62a726 100644 --- a/dashboardv2/public/js/utils/Utils.js +++ b/dashboardv2/public/js/utils/Utils.js @@ -431,6 +431,7 @@ define(['require', 'utils/Globals', 'pnotify', 'utils/Messages', 'pnotify.button //first show body to get width and height for postion then trigger the event. $(this).trigger('fullscreen_done', [$(this).parents('.panel')]); } else if (panelBody.hasClass('full-visible')) { + $('body').removeAttr("style"); $(this).trigger('fullscreen_done', [$(this).parents('.panel')]); //first trigger the event to getwidth and height for postion then hide body. panelBody.hide();
