Skip to content

Instantly share code, notes, and snippets.

@stomita
Created February 15, 2013 05:12
Show Gist options
  • Save stomita/4958675 to your computer and use it in GitHub Desktop.
Save stomita/4958675 to your computer and use it in GitHub Desktop.
<apex:page>
<apex:includeScript value="//ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js" />
<apex:outputPanel>
<div class="ng-app">
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here" />
<hr />
<h1>Hello {{yourName}}!</h1>
</div>
</apex:outputPanel>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment