You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ni...@apache.org on 2021/01/05 05:10:49 UTC

[atlas] branch master updated: ATLAS-3980: UI (classic) : When classification is created, the left pane takes the control to the end of the long list of classifications

This is an automated email from the ASF dual-hosted git repository.

nixon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/master by this push:
     new f9b786d  ATLAS-3980: UI (classic) : When classification is created, the left pane takes the control to the end of the long list of classifications
f9b786d is described below

commit f9b786db65a4aa8002ade2c4ec45c2c31dbe3b71
Author: kevalbhatt <kb...@apache.org>
AuthorDate: Tue Oct 6 20:12:45 2020 +0530

    ATLAS-3980: UI (classic) : When classification is created, the left pane takes the control to the end of the long list of classifications
    
    Signed-off-by: nixonrodrigues <ni...@apache.org>
---
 dashboardv2/public/js/views/tag/TagLayoutView.js | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/dashboardv2/public/js/views/tag/TagLayoutView.js b/dashboardv2/public/js/views/tag/TagLayoutView.js
index b23bd98..c358e05 100644
--- a/dashboardv2/public/js/views/tag/TagLayoutView.js
+++ b/dashboardv2/public/js/views/tag/TagLayoutView.js
@@ -206,13 +206,6 @@ define(['require',
                             if (target.children('div').find('a').text() === tag) {
                                 target.addClass('active');
                                 target.parents('ul').addClass('show').removeClass('hide'); // Don't use toggle
-                                if (this.createTag || !manual) {
-                                    if (target.offset()) {
-                                        $('#sidebar-wrapper').animate({
-                                            scrollTop: target.offset().top - 100
-                                        }, 500);
-                                    }
-                                }
                                 return false;
                             }
                         });