Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 516 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 516 Bytes

img-thumb

angular directive, input[file] image local preview

Installation

bower install ng-img-thumb --save

Usage

<body>
    <input type="file" id="select-file" ng-model='appCtrl.file'>
    <img-thumb file="appCtrl.file"></img-thumb>
    <script src="bower_components/ng-img-thumb/img-thumb.js"></script>
    <script>
    angular.module('app',['ngImgThumb'])
        .controller('AppCtrl',['$scope',function($scope){
            var scope = this;
        }]);
    </script>
    
</body>