Can I execute few actions by using one ng-click attribute? For example:
<input type="button" ng-click="createUser(); isVisiblePopup = true" value="Create new user">
Also I tried to use arrow function:
<input type="button" ng-click="createUser(); () => { isVisiblePopup = true }" value="Create new user">