Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
It should actually work:
But it should be better to group the both function in the js code - function defintion
$scope.app.myNewFunction= function(){
$scope.setSequnece("sequence1");
//or $scope.app.setSequnece("sequence1");
// if defintion in app
$sope.B1();
}
and then call app.myNewFunction(); in UI
It should actually work:
But it should be better to group the both function in the js code - function defintion
$scope.app.myNewFunction= function(){
$scope.setSequnece("sequence1");
//or $scope.app.setSequnece("sequence1");
// if defintion in app
$sope.B1();
}
and then call app.myNewFunction(); in UI