generator-mycroftx-component
Version:
Yeoman generator and modified generator-ng-component
23 lines (16 loc) • 357 B
text/coffeescript
'use strict'
angular.module '<%= scriptAppName %>'
.provider '<%= cameledName %>', ->
# Private variables
salutation = 'Hello'
# Private constructor
class Greeter
@greet = ->
salutation
# Public API for configuration
@setSalutation = (s) ->
salutation = s
# Method for instantiating
@$get = ->
new Greeter()
return