is it possible to call an object c action, when you are executing a javascript function. I have this function in java.
.when('/testimonials', {
controller: 'TestiController',
templateUrl: 'partials/testimonials.html'
})
And i want to have this action executed when the javascript function is being executed..
- (IBAction)knap2:(id)sender{
knap1.hidden = YES;
}
I've tried searching but couldn't find anything.