Last active
August 29, 2015 14:19
-
-
Save tomatohammado/891001971a9718ef1d18 to your computer and use it in GitHub Desktop.
angular_app
This file contains hidden or 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
| var app = angular.module('ourApp', []); | |
| var signedURL = 'https://api.meetup.com/2/open_events?zip=20012&and_text=False&offset=0&format=json&limited_events=False&page=200&radius=25.0&category=29&desc=False&status=upcoming&sig_id=17324211&sig=54c93a355bf1951e34451b97678e1fb26c11634b'; |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Angular App</title> | |
| <meta charset="utf-8"> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular.min.js" type="text/javascript"></script> | |
| </head> | |
| <body ng-app="ourApp"> | |
| <input placeholder="Your Name" type="text" ng-model="bananaFoo"> | |
| <h1> {{ bananaFoo }} </h1> | |
| <script type="text/javascript" src="app.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment