//More info htpp://mehmetcanker.com //Module Defining //Module Tanimlaniyor. var myApp = angular.module('mehmetCanker', []); //Creating Controller in mehmetCanker module //Olusturulan module icine controller //tanimladik myApp.controller('ngClassExample', ['$scope', function($scope){ //initial Value for Toggle Button Value $scope.stat = "Show"; //changeCss Function $scope.changeCss = function(){ $scope.classBool = !$scope.classBool; //Toggle Button Value is changed by classBool if($scope.classBool){ $scope.stat = "Hide"; }else{ $scope.stat = "Show"; } } }]);