Skip to content

Instantly share code, notes, and snippets.

@mmautner
Created November 8, 2015 20:15
Show Gist options
  • Save mmautner/5a30a18a239b10fbda19 to your computer and use it in GitHub Desktop.
Save mmautner/5a30a18a239b10fbda19 to your computer and use it in GitHub Desktop.
{
"name": "stout-example",
"authors": [
"Max Mautner"
],
"description": "",
"main": "",
"moduleType": [],
"license": "MIT",
"homepage": "",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"app/lib/bower",
"test",
"tests"
],
"dependencies": {
"angular": "~1.4.7",
"ng-imgur": "~0.2.1"
},
"resolutions": {
"angular": "~1.4.7"
}
}
<html ng-app="scratch">
<body>
<div ng-controller="MainCtrl">
<h1>Hi</h1>
</div>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/ng-imgur/dist/ng-imgur.js"></script>
<script>
var app = angular.module("scratch", ["ngImgur"])
.controller("MainCtrl", function() {
console.log('scratch');
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment