Skip to content

Latest commit

 

History

History
123 lines (71 loc) · 4.73 KB

CHANGELOG.md

File metadata and controls

123 lines (71 loc) · 4.73 KB

v0.1.2 (2013-10-25)

Bug Fixes

v0.1.1 (2013-10-23)

Bug Fixes

  • events: now emiting $scope events rather than DOM events (7b711238)

Breaking Changes

Rather than binding $element.bind('filled.comments', fn), one must instead $scope.$on('$filledNestedComments', fn) and expect a jQuery/jqLite element, which is either the comment element itself (if there is no commentsTransclude in use), or the commentsTransclude element (or the comments collection which replaces it) if it is present.

Similarly, $element.bind('emptied.comments', fn) must instead be written as $scope.$on('$emptiedNestedComments', fn). The same parameter rules as above apply.

The event names are not yet final, and will likely be broken again in the near future. (7b711238)

v0.1.0 (2013-10-22)

Features

  • comments: directive to define insert nested comments in template (4c796ccc)

v0.0.10 (2013-10-22)

Bug Fixes

  • style: remove tab spacing from source files (2066c22f)

v0.0.9 (2013-10-16)

v0.0.8 (2013-09-27)

v0.0.7 (2013-09-27)

Bug Fixes

  • release:
    • gh-pages add, don't delete old content. (2ba46417)
    • gh-pages before SNAPSHOT, and ignore SNAPSHOT (49dca37b)

Features

  • docs: Setup GA on API docs and demo (0a125574)

v0.0.6 (2013-09-26)

Bug Fixes

  • release:
    • Cleanup test build before release (1305a435)
    • Generate gh-pages for correct version. (01805f25)
    • gh-pages before SNAPSHOT, and ignore SNAPSHOT (54ae7b2d)

v0.0.5 (2013-09-26)

Bug Fixes

  • release: Generate gh-pages branch before setting SNAPSHOT version (52cb6549)

v0.0.4 (2013-09-26)

Bug Fixes

  • TravisCI: Use npm --silent instead of npm --quiet (bcd30e2a)
  • demo: Fixup demo URL to API docs (ac467814)
  • ngdocs: Temporarily using fork which preprocesses navTemplate (f0812f45)

Features

  • tools: Auto-publishing of gh-pages branch. (c1508fcb)

v0.0.3 (2013-09-26)

Bug Fixes

  • comments: Improve commentsConfig.set() perf. (7bfc109d)
  • dependencies: Update semver and shelljs devDependencies (ba71f839)
  • event: Emit event only after compilation is completed (c5c23b6d)
  • release: Prefix tag-names with 'v', for semver-ness (29f20bc6)
  • template: ngHref and ngSrc directives fixed (a8835770)

Features

  • comments: Instantiate configured controller for comments (07390982)
  • events: Comment now emit when children truthiness changes (13f702e5)