Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save iCodeForBananas/25af6a969cf0b015887f to your computer and use it in GitHub Desktop.

Select an option

Save iCodeForBananas/25af6a969cf0b015887f to your computer and use it in GitHub Desktop.
'use strict'
module.exports = angular.module('musicbed.checkout', [])
# Controllers
.controller 'checkout.existingLicense.ctrl', require('./controllers/checkout.existingLicense.ctrl.coffee')
# Factories
.factory 'Checkout.Steps.Factory', require('./factories/checkout.steps.factory.coffee')
.factory 'Checkout.Questions.Factory', require('./factories/checkout.questions.factory.coffee')
.factory 'Checkout.AltQuestion.Factory', require('./factories/checkout.altQuestion.factory.coffee')
# Services
.service 'Checkout.Description.Service', require('./services/checkout.description.service.coffee')
.service 'Checkout.Handler.Service', require('./services/checkout.handler.service.coffee')
.service 'Checkout.LicenseIds.Service', require('./services/checkout.licenseIds.service.coffee')
.service 'Checkout.Utility.Service', require('./services/checkout.utility.service.coffee')
.service 'Checkout.Wizard.Service', require('./services/checkout.wizard.service.coffee')
.service 'Checkout.CustomFlag.Service', require('./services/checkout.customFlag.service.coffee')
# Directives
.directive 'checkoutBottomHelpBar', require('./directives/checkout.bottomHelpBar.directive.coffee')
.directive 'checkoutDescriptions', require('./directives/checkout.descriptions.directive.coffee')
.directive 'checkoutBuildLicenseModal', require('./directives/checkout.buildLicenseModal.directive.coffee')
.directive 'checkoutWizard', require('./directives/checkout.wizard.directive.coffee')
.directive 'openBuildLicenseModal', require('./directives/checkout.openBuildLicenseModal.directive.coffee')
.directive 'openPricingToolModal', require('./directives/checkout.openPricingToolModal.directive.coffee')
.directive 'checkoutPricingToolModal', require('./directives/checkout.pricingToolModal.directive.coffee')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment