I am getting error when i use ngSanitize.
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular-sanitize.js"></script>
<script>
  var myApp = angular.module('myApp', ['ngSanitize']);
  myApp.run(function($templateCache) {
    $templateCache.put('templateCache.html', '<button>Click me</button> This is the content of the template');
  });
  myApp.controller("crt", ['$scope', '$templateCache', '$compile',
    function($scope, $templateCache, $compile) {
      //$templateCache.remove("templateCache.html");
      $scope.caches = $compile($templateCache.get("templateCache.html"))($scope);
    }
  ])
</script>
<body ng-app="myApp" ng-controller="crt">
  <span ng-bind-html="caches"></span>
</body>Help me out what wrong in this code
 
    