| Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 1 | /** |
| 2 | * A module to easily inject vendors dependencies as angular service | ||||
| 3 | * | ||||
| 4 | * @module app/vendors | ||||
| 5 | * @exports app/vendors | ||||
| 6 | * @version 0.0.1 | ||||
| 7 | */ | ||||
| 8 | |||||
| 9 | window.angular && (function (angular) { | ||||
| 10 | 'use strict'; | ||||
| 11 | |||||
| 12 | angular | ||||
| 13 | .module('app.vendors', []) | ||||
| 14 | })(window.angular); | ||||