UNPKG

ng-giphy

Version:

An angular module that leverages the [giphy API](https://github.com/Giphy/GiphyAPI) to use it on angular applications

13 lines (9 loc) 282 B
(function () { 'use strict'; angular.module('ng-giphy') .run(templateCache);templateCache.$inject = ['$templateCache']; /* @ngInject */ function templateCache($templateCache) { $templateCache.put('imgTemplate.html', '<img ng-src="{{ vm.giphysrc }}">'); } })();