angular-bootstrap-3

 

Example of Angular bootstrap:

 
 
 
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Welcome in the AngularJS</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"></script> </head> <body> <div ng-controller="bootstrapController"> <div class="container"> <div class="col-md-3"> Are you developer <input type="checkbox" ng-model="isTrue" ng-change="isTrue==true?count=count+1:null" /> <pre> Count: {{count}}<br />{{isTrue}}</pre> </div> </div> </div> </body> </html> <script> var app = angular.module("app", []); app.controller('bootstrapController', ['$scope', function ($scope) { $scope.isTrue = true; }]); angular.bootstrap(document, ['app']); </script>
Output