In my code there is:
<button class="btn float-right" data-ng-click="test()">
Reset
</button>
Is it possible for me to fire more than one function when I do a click of the button. If so how should I code that?
Update. I would like to call the test()
function in the current scope and the otherTest()
function in the parent scope / controller.