| 'use strict'; | |
| function Msg($log){ | |
| var Msg = function(type, body){ | |
| this.type = type; | |
| this.body = body; | |
| } | |
| $log.info("new Msg():", Msg); | |
| return Msg; | |
| } | |
| angular | |
| .module('app') | |
| .factory('Msg', Msg); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment