Skip to content

v3.1.0

Compare
Choose a tag to compare
@CaryLandholt CaryLandholt released this 05 Jul 02:42
· 29 commits to master since this release

Features

  • moduleChaining: chain multiple module declarations (0e9d4c5e)

Before:

angular.module('app').controller 'homeController', [Home]
angular.module('app').service 'aboutService', [About]

After:

angular.module('app')
.controller 'homeController', [Home]
.service 'aboutService', [About]