-
Notifications
You must be signed in to change notification settings - Fork 82
Installing
Honchar Denys edited this page Oct 20, 2016
·
1 revision
Wiki> [Screenshots]> [Browser/device support]> [Options]> Installing
You have four options to get the files:
- Download ngImgCropExtended files from GitHub.
- Use Bower to download the files. Just run
bower install ngImgCropFullExtended
. - Use Npm to download the files. Just run
npm i ng-img-crop-full-extended
. - Use Meteor to download the files. Just run
meteor add correpw:ng-img-crop-full-extended
.
Add the scripts to your application. Make sure the ng-img-crop.js
file is inserted after the angular.js
library:
<script src="angular.js"></script>
<script src="ng-img-crop.js"></script>
<link rel="stylesheet" type="text/css" href="ng-img-crop.css">
Add the image crop module as a dependancy to your application module:
var myAppModule = angular.module('MyApp', ['ngImgCrop']);