angular-base64 icon indicating copy to clipboard operation
angular-base64 copied to clipboard

Is it possible to inject?

Open narcotjke opened this issue 9 years ago • 1 comments

Is it possible to inject $base64? How to user this library with injector?

narcotjke avatar Apr 21 '16 22:04 narcotjke

Yes,

it's clearly explained in README file:

angular
    .module('myApp', ['base64'])
    .controller('myController', [
        '$base64', '$scope', 
        function($base64, $scope) {
    }]);

frazzaglia avatar Apr 18 '17 09:04 frazzaglia