Hi all ML :-)

i new by on angularJS


my problem is: that I see the video ok value after the second click here is 
the code

---------------------
on view i this code 
---------------------


<ul class="nav nav-tabs">
    <li class="active"><a href="#/level/run" 
ng-click="test()">PROVA</a></li>
</ul>

<p ng-click="test()"> TOUCH ME</p>
<p>{{cliccato}}</p>


-----------------------
my controller is :
-----------------------

angular.module('caco.MiniRSS')
    .controller('LivelliCtrl',
                ['$scope', '$routeParams',
        function ($scope, $routeParams) {
         
        $scope.test = function ()
        {
            $scope.cliccato = "OK";            
        }
        

    }]);


-----------------------
my apps js is ...
----------------------

.when('/level/run',       {templateUrl: 'views/manage/listLevel.html', 
controller: 'LivelliCtrl'}) 

why ? Thanks Ad.         

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to