bilw

Results 1 comments of bilw

This is a more recent approach to the app.js file. var app = angular.module('myApp', []); app.controller('myCtrl', function($scope){ $scope.visible = true; $scope.toggle = function(){ $scope.visible = !$scope.visible; }; });