Last active
January 11, 2017 07:04
-
-
Save bora89/c64581d72d9673e3ee8a9e8015fc87ec to your computer and use it in GitHub Desktop.
Angular 1.x
Module, service, directive boilerplate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| 'use strict'; | |
| angular | |
| .module('xtras') | |
| .factory('modalPopupService', service); | |
| service.$inject = ['']; | |
| function service() { | |
| // public API | |
| return {}; | |
| // implementation | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment