Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions zeppelin-web/src/app/notebook/notebook.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -879,6 +879,7 @@ angular.module('zeppelinWebApp').controller('NotebookCtrl',

// function to find suggestion list on change
$scope.search = function(role) {
$('.userlist').show();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

angular.element?

convertToArray(role);
checkPreviousRole(role);
getChangedIndex();
Expand Down Expand Up @@ -950,5 +951,8 @@ angular.module('zeppelinWebApp').controller('NotebookCtrl',
$scope.suggestions = [];
};

angular.element(document).click(function(){
$('.userlist').hide();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

angular.element?

});

});