blob: a44db79a8137387a887f0d1642f5ffe3f2217494 [file]
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example65</title>
<script src="../../../angular.min.js"></script>
</head>
<body ng-app="">
<script>
function ExampleController($cookies) {
// Retrieving a cookie
var favoriteCookie = $cookies.myFavorite;
// Setting a cookie
$cookies.myFavorite = 'oatmeal';
}
</script>
</body>
</html>