Created
November 12, 2012 15:16
-
-
Save scttymn/4059912 to your computer and use it in GitHub Desktop.
Angularize
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#application.html.haml | |
%html(ng-app) | |
#event.js | |
function EventCtrl($scope){ | |
$scope.current_user = { | |
name: "Scotty Moon", | |
email: "[email protected]" | |
} | |
} | |
#view (loaded from db) | |
<div class="main" ng-controller="EventCtrl"> | |
<h2>Customize My Calendar</h2> | |
<p> | |
<strong>Personalized for: {{current_user.email}}</strong><br> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment