Skip to content

v4.0.1

Compare
Choose a tag to compare
@CaryLandholt CaryLandholt released this 15 Aug 04:26
· 17 commits to master since this release

Bug Fixes

  • ambiguous-coffee-script: ensure compilation is unambiguous (a73cedc3, closes #20)

Although ng-classify produces valid CoffeeScript, other dependencies may use an older version of the CoffeeScript compiler that may not.
This isn't a bug fix as much as a friendly tweak.

Before:

angular.module 'app'
.controller 'homeController', [Home]

After:

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