Skip to content

Instantly share code, notes, and snippets.

@scttymn
Created November 12, 2012 15:16
Show Gist options
  • Save scttymn/4059912 to your computer and use it in GitHub Desktop.
Save scttymn/4059912 to your computer and use it in GitHub Desktop.
Angularize
#application.html.haml
%html(ng-app)
#event.js
function EventCtrl($scope){
$scope.current_user = {
name: "Scotty Moon",
email: "scotty@ovenbits.com"
}
}
#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