Created
November 8, 2015 20:15
-
-
Save mmautner/5a30a18a239b10fbda19 to your computer and use it in GitHub Desktop.
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
{ | |
"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" | |
} | |
} |
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
<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